diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-03 09:17:40 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-03 09:17:40 +0100 |
commit | 7a931304ea4485829432c4efa1a0a1597b0c953e (patch) | |
tree | 2c2b4bcc03c799bc86de8df4413314d1e4c99787 | |
parent | 9fbdb3af61e0dbe4b497e12f93d86894272e55dd (diff) |
add hppa checks
-rwxr-xr-x | embedded-test.sh | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/embedded-test.sh b/embedded-test.sh index 8e56d89..5bd8b23 100755 --- a/embedded-test.sh +++ b/embedded-test.sh @@ -25,7 +25,7 @@ # uClibc-ng arch_list_uclibcng="alpha arcv1 arcv2 arcv1-be arcv2-be arm-nommu \ armv5 armv7 armv7-thumb2 armeb avr32 bf512-flat bf512-fdpic c6x \ - crisv10 crisv32 frv h8300 ia64 lm32 m68k m68k-nommu metag \ + crisv10 crisv32 frv h8300 hppa ia64 lm32 m68k m68k-nommu metag \ microblazeel microblazebe mips mipssf mipsel mipselsf mips64 \ mips64n32 mips64n64 mips64el mips64eln32 mips64eln64 nds32le \ nios2 or1k ppc ppcsf sh2 sh3 sh4 sh4eb sparc sparc-leon3 x86 \ @@ -38,11 +38,11 @@ arch_list_musl="aarch64 aarch64be armv5 armv7 armeb microblazeel \ sh4eb x86 x86_64 x86_64_x32" # glibc -arch_list_glibc="aarch64 aarch64be alpha armv5 armv7 armeb ia64 \ - microblazeel microblazebe mips mipssf mipsel mipselsf mips64 \ - mips64n32 mips64n64 mips64el mips64eln32 mips64eln64 nios2 ppc \ - ppcsf ppc64 ppc64le s390 sh4 sh4eb sparc64 tilegx x86 x86_64 \ - x86_64_x32" +arch_list_glibc="aarch64 aarch64be alpha armv5 armv7 armeb hppa \ + ia64 microblazeel microblazebe mips mipssf mipsel mipselsf \ + mips64 mips64n32 mips64n64 mips64el mips64eln32 mips64eln64 \ + nios2 ppc ppcsf ppc64 ppc64le s390 sh4 sh4eb sparc64 tilegx x86 \ + x86_64 x86_64_x32" # newlib arch_list_newlib="aarch64 aarch64be arcv1 armv5 armeb bfin crisv10 \ @@ -472,6 +472,13 @@ get_arch_info() { default_uclibc_ng="ADK_APPLIANCE=toolchain ADK_TARGET_OS=linux ADK_TARGET_ARCH=h8300 ADK_TARGET_SYSTEM=sim-h8300" default_newlib="ADK_APPLIANCE=toolchain ADK_TARGET_OS=baremetal ADK_TARGET_ARCH=h8300" ;; + hppa) + allowed_libc="uclibc-ng glibc" + runtime_test="" + allowed_tests="toolchain" + default_uclibc_ng="ADK_APPLIANCE=toolchain ADK_TARGET_OS=linux ADK_TARGET_ARCH=hppa ADK_TARGET_SYSTEM=generic-hppa" + default_glibc="ADK_APPLIANCE=toolchain ADK_TARGET_OS=linux ADK_TARGET_ARCH=hppa ADK_TARGET_SYSTEM=generic-hppa" + ;; lm32) allowed_libc="uclibc-ng newlib" runtime_test="" |