diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-05-26 15:43:42 -0500 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-05-26 15:43:42 -0500 |
commit | 23b49ae87542e284e15a127498375a56d6ceb6a4 (patch) | |
tree | b3554e111a714e2ace39d05f6703234778c2f612 | |
parent | bb4f957a63e0b7306c477226e3d5bba4d840b584 (diff) |
add crisv10/crisv32 checks
-rwxr-xr-x | embedded-test.sh | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/embedded-test.sh b/embedded-test.sh index 77e89f5..b6d758c 100755 --- a/embedded-test.sh +++ b/embedded-test.sh @@ -28,8 +28,8 @@ # ppc qemu startup has problems. unclear why. # uClibc-ng -arch_list_uclibcng_quick="arm arc avr32 bfin c6x cris m68k m68k-nommu mipsel mips64el ppcsf sh sparc x86 x86_64 xtensa" -arch_list_uclibcng="arm armhf armeb arc arcbe avr32 bfin c6x cris m68k m68k-nommu mips mipssf mipsel mipselsf mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64el mips64eln64 ppc ppcsf sh sheb sparc x86 x86_64 xtensa" +arch_list_uclibcng_quick="arm arc avr32 bfin c6x crisv10 m68k m68k-nommu mipsel mips64el ppcsf sh sparc x86 x86_64 xtensa" +arch_list_uclibcng="arm armhf armeb arc arcbe avr32 bfin c6x crisv10 crisv32 m68k m68k-nommu mips mipssf mipsel mipselsf mips64 mips64eln32 mips64n32 mips64n64 mips64el mips64el mips64eln64 ppc ppcsf sh sheb sparc x86 x86_64 xtensa" # musl arch_list_musl_quick="aarch64 arm microblazeel mipsel ppc sh x86 x86_64" @@ -548,8 +548,12 @@ build() { DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=c6x ADK_TARGET_SYSTEM=toolchain-c6x" compile "$DEFAULT" ;; - cris) - DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=cris ADK_TARGET_SYSTEM=toolchain-cris" + crisv10) + DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=cris ADK_TARGET_SYSTEM=toolchain-cris ADK_TARGET_CPU=crisv10" + compile "$DEFAULT" + ;; + crisv32) + DEFAULT="$DEFAULT ADK_APPLIANCE=new ADK_TARGET_ARCH=cris ADK_TARGET_SYSTEM=toolchain-cris ADK_TARGET_CPU=crisv32" compile "$DEFAULT" ;; m68k) @@ -729,7 +733,7 @@ for lib in ${libc}; do case $lib in uclibc-ng) case $arch in - arc|arcbe|armeb|avr32|bfin|c6x|cris|microblazeel|microblazebe|m68k|m68k-nommu|nios2|ppc|sheb|mips64eln32|mips64n32) + arc|arcbe|armeb|avr32|bfin|c6x|crisv10|crisv32|microblazeel|microblazebe|m68k|m68k-nommu|nios2|ppc|sheb|mips64eln32|mips64n32) echo "runtime tests disabled for $arch." ;; *) |