diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-14 15:30:53 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-14 15:30:53 +0100 |
commit | 608f969e4d96cb1b2a361c2a3b6a32233a644e3b (patch) | |
tree | 911d87feabe7c7e2153fd5b65b234d149b42574d /toolchain/gcc | |
parent | bc561e500e22bc9d953fd9a80144f80295a4cbbd (diff) |
fix m68k support
disable systems without thread local storage, not supported by
OpenADK anymore. Remove m68k uclibc. fix kernel bootup in aranym.
Diffstat (limited to 'toolchain/gcc')
-rw-r--r-- | toolchain/gcc/Makefile | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index d7527442f..f93f9d7cf 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -19,6 +19,7 @@ GCC_CONFOPTS= --prefix=$(STAGING_HOST_DIR) \ --disable-__cxa_atexit \ --with-gnu-ld \ --with-gnu-as \ + --enable-tls \ --disable-libsanitizer \ --disable-libitm \ --disable-libmudflap \ @@ -64,16 +65,6 @@ else GCC_CONFOPTS+= --disable-lto endif -ifeq ($(ARCH),m68k) -ifeq ($(ADK_TARGET_LIBC),uclibc) -GCC_CONFOPTS+= --disable-tls -else -GCC_CONFOPTS+= --enable-tls -endif -else -GCC_CONFOPTS+= --enable-tls -endif - ifeq ($(ADK_LINUX_PPC),y) ifeq ($(ADK_TARGET_LIBC),uclibc) GCC_CONFOPTS+= --disable-target-optspace --with-long-double-128 --enable-secureplt |