summaryrefslogtreecommitdiff
path: root/toolchain/gcc/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2019-09-30 17:54:28 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2019-09-30 17:56:52 +0200
commit185f430dbf2c36415930941eced92723824950d6 (patch)
tree4dcd88236e1011b3fc2da9c3e567da0b9d7fe4d1 /toolchain/gcc/Makefile
parent2045193013cf9f18c3bdf6e81daf2bb87c17bff4 (diff)
remove unfinished alternative os porting efforts
Diffstat (limited to 'toolchain/gcc/Makefile')
-rw-r--r--toolchain/gcc/Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile
index 77600d6d2..4edb9e862 100644
--- a/toolchain/gcc/Makefile
+++ b/toolchain/gcc/Makefile
@@ -57,7 +57,7 @@ GCC_CONFOPTS:= --prefix=$(TOOLCHAIN_DIR)/usr \
--disable-werror \
--disable-nls
-ifeq ($(ADK_TARGET_OS_LINUX)$(ADK_TARGET_OS_WALDUX),y)
+ifeq ($(ADK_TARGET_OS_LINUX),y)
ifeq ($(ADK_TARGET_LIB_UCLIBC_NG),y)
ifeq ($(ADK_TARGET_WITH_NPTL),y)
GCC_FINAL_CONFOPTS:= --enable-tls --enable-threads --enable-libatomic
@@ -81,15 +81,11 @@ ifeq ($(ADK_TARGET_OS_BAREMETAL),y)
GCC_FINAL_CONFOPTS:= --disable-libatomic
endif
-ifeq ($(ADK_TARGET_OS_RTEMS),y)
-GCC_FINAL_CONFOPTS:= --enable-libatomic
-endif
-
ifeq ($(ADK_TARGET_LIB_NEWLIB),y)
GCC_FINAL_CONFOPTS+= --with-newlib
endif
-ifeq ($(ADK_TARGET_OS_FROSTED)$(ADK_TARGET_USE_STATIC_LIBS_ONLY),y)
+ifeq ($(ADK_TARGET_USE_STATIC_LIBS_ONLY),y)
GCC_FINAL_CONFOPTS+= --disable-shared
else
GCC_FINAL_CONFOPTS+= --enable-shared --enable-cxx-flags='-fPIC'