Browse Source

fix for arch without threads

Waldemar Brodkorb 8 years ago
parent
commit
8575779b3d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      toolchain/gcc/Makefile

+ 1 - 1
toolchain/gcc/Makefile

@@ -63,7 +63,7 @@ endif
 ifeq ($(ADK_TARGET_WITH_LT),y)
 GCC_FINAL_CONFOPTS:=	--disable-tls --enable-threads --disable-libatomic
 endif
-ifeq ($(ADK_TARGET_LIB_WITHOUT_THREADS),y)
+ifeq ($(ADK_TARGET_LIB_WITHOUT_THREADS)$(ADK_TARGET_WITHOUT_THREADS),y)
 GCC_FINAL_CONFOPTS:=	--disable-tls --disable-threads --disable-libatomic
 endif