diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-12-13 17:27:46 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-12-13 22:26:51 +0100 |
commit | 227b5d2e26712ec86f14a5d10fdc203f93dc1279 (patch) | |
tree | 1cee5b97cdac7f8d132a593d119f743f2d774db8 /toolchain/gcc/gcc-uclibc-4.x.mk | |
parent | 42e32d55b137d47b207e41e83857e53c05de3137 (diff) | |
download | buildroot-novena-227b5d2e26712ec86f14a5d10fdc203f93dc1279.tar.gz buildroot-novena-227b5d2e26712ec86f14a5d10fdc203f93dc1279.zip |
gcc: disable libgomp when thread support is disabled
libgomp needs thread support on the target to build properly.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/gcc/gcc-uclibc-4.x.mk')
-rw-r--r-- | toolchain/gcc/gcc-uclibc-4.x.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/gcc/gcc-uclibc-4.x.mk b/toolchain/gcc/gcc-uclibc-4.x.mk index 5f69906ca..cd63992fc 100644 --- a/toolchain/gcc/gcc-uclibc-4.x.mk +++ b/toolchain/gcc/gcc-uclibc-4.x.mk @@ -139,7 +139,7 @@ GCC_TLS:=--disable-tls endif ifeq ($(BR2_PTHREADS_NONE),y) -THREADS:=--disable-threads +THREADS:=--disable-threads --disable-libgomp else THREADS:=--enable-threads endif |