diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2021-11-14 02:27:23 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2021-11-14 02:27:23 +0100 |
commit | 0a8b45dd4388544c2488742258d39a7947bd7c5d (patch) | |
tree | e5f8e3866d6371b44777240d139206c735d00d05 | |
parent | 76f761e22b31a8cf3d95b936d72108ee587f5154 (diff) |
sh3 is noMMU
-rwxr-xr-x | embedded-test.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embedded-test.sh b/embedded-test.sh index 812977e..f0f959c 100755 --- a/embedded-test.sh +++ b/embedded-test.sh @@ -51,7 +51,7 @@ arch_list_glibc="aarch64 aarch64be alpha armv6 armv7 arcv2 arcv2-be \ mips32 mips32r6 mips32sf mips32el mips32elsf \ mips64 mips64n32 mips64n64 mips64el mips64eln32 mips64eln64 \ mips64r6n32 mips64r6n64 mips64r6eln32 mips64r6eln64 \ - nios2 ppc ppcsf ppc64 ppc64le riscv64 s390 sh3 sh4 sh4eb sparc64 \ + nios2 ppc ppcsf ppc64 ppc64le riscv64 s390 sh4 sh4eb sparc64 \ x86 x86_64 x86_64_x32" # newlib @@ -1091,7 +1091,7 @@ get_arch_info() { cpu_arch=sh2 ;; sh3) - allowed_libc="uclibc-ng glibc" + allowed_libc="uclibc-ng" runtime_test="" allowed_tests="toolchain" default_uclibc_ng="ADK_APPLIANCE=toolchain ADK_TARGET_OS=$os ADK_TARGET_ARCH=sh ADK_TARGET_SYSTEM=generic-sh ADK_TARGET_CPU=sh3 ADK_TARGET_MMU=no ADK_TARGET_ENDIAN=little" @@ -1099,7 +1099,7 @@ get_arch_info() { cpu_arch=sh3 ;; sh3eb) - allowed_libc="uclibc-ng glibc" + allowed_libc="uclibc-ng" runtime_test="" allowed_tests="toolchain" default_uclibc_ng="ADK_APPLIANCE=toolchain ADK_TARGET_OS=$os ADK_TARGET_ARCH=sh ADK_TARGET_SYSTEM=generic-sh ADK_TARGET_CPU=sh3 ADK_TARGET_MMU=no ADK_TARGET_ENDIAN=big" |