diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-24 07:55:07 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-24 07:55:07 +0100 |
commit | c390d1649de615c390ced12ac12b855622905ad3 (patch) | |
tree | c285abd3adcf231732ee6cb525a96ee92a14e4c8 /toolchain | |
parent | 84b27b24967b86a34a6862491445935f5625a2d4 (diff) |
activate pthread support, even when gdb is choosen as package
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/uClibc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile index 3c4af868e..2a263974f 100644 --- a/toolchain/uClibc/Makefile +++ b/toolchain/uClibc/Makefile @@ -53,7 +53,7 @@ ifeq ($(ADK_TARGET_ABI_O32),y) $(SED) 's/.*\(CONFIG_MIPS_N32_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config $(SED) 's/.*\(CONFIG_MIPS_N64_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config endif -ifeq ($(ADK_PACKAGE_GDB),y) +ifneq ($(ADK_PACKAGE_GDB),) $(SED) "s/.*\(PTHREADS_DEBUG_SUPPORT\).*/\1=y/" ${WRKBUILD}/.config endif ifeq ($(ADK_TOOLCHAIN_GCC_USE_SSP),y) |