control pthread support since some arches like x86_64 dont yet support it in uClibc
This commit is contained in:
parent
59a63a91eb
commit
272e7fda19
@ -1,3 +1,9 @@
|
||||
ifeq ($(BR2_PTHREADS),y)
|
||||
THREADS:=--enable-threads
|
||||
else
|
||||
THREADS:=--disable-threads
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_ENABLE_MULTILIB),y)
|
||||
MULTILIB:=--enable-multilib
|
||||
else
|
||||
|
@ -109,6 +109,7 @@ $(GCC_BUILD_DIR1)/.configured: $(GCC_DIR)/.patched
|
||||
--enable-target-optspace \
|
||||
--with-gnu-ld \
|
||||
$(DISABLE_NLS) \
|
||||
$(THREADS) \
|
||||
$(MULTILIB) \
|
||||
$(SOFT_FLOAT_CONFIG_OPTION) \
|
||||
$(GCC_WITH_CPU) $(GCC_WITH_ARCH) $(GCC_WITH_TUNE) \
|
||||
@ -163,6 +164,7 @@ $(GCC_BUILD_DIR2)/.configured: $(GCC_DIR)/.patched $(STAGING_DIR)/lib/libc.a
|
||||
--enable-target-optspace \
|
||||
--with-gnu-ld \
|
||||
$(DISABLE_NLS) \
|
||||
$(THREADS) \
|
||||
$(MULTILIB) \
|
||||
$(SOFT_FLOAT_CONFIG_OPTION) \
|
||||
$(GCC_WITH_CPU) $(GCC_WITH_ARCH) $(GCC_WITH_TUNE) \
|
||||
@ -279,6 +281,7 @@ $(GCC_BUILD_DIR3)/.configured: $(GCC_BUILD_DIR2)/.installed
|
||||
--enable-target-optspace \
|
||||
--with-gnu-ld \
|
||||
$(DISABLE_NLS) \
|
||||
$(THREADS) \
|
||||
$(MULTILIB) \
|
||||
$(SOFT_FLOAT_CONFIG_OPTION) \
|
||||
$(GCC_WITH_CPU) $(GCC_WITH_ARCH) $(GCC_WITH_TUNE) \
|
||||
|
@ -22,9 +22,16 @@ config BR2_ENABLE_LOCALE
|
||||
help
|
||||
Enable locale/gettext/i18n support?
|
||||
|
||||
config BR2_PTHREADS
|
||||
bool "Enable thread support"
|
||||
default y
|
||||
help
|
||||
Enable support for libpthreads
|
||||
|
||||
config BR2_PTHREADS_NATIVE
|
||||
bool "Enable Native POSIX Threading (NPTL) support?"
|
||||
default n
|
||||
depends on BR2_PTHREADS
|
||||
help
|
||||
Enable Native POSIX Threading (NPTL) support?
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user