summaryrefslogtreecommitdiff
path: root/toolchain/toolchain-common.in
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2016-06-13 08:03:03 +0200
committerPeter Korsgaard <peter@korsgaard.com>2016-06-27 15:06:25 +0200
commitdf00b174f6c965be52d58a7911cec74de1426f8d (patch)
tree97f4db0ff7cb2e368d4a763c4236aaa408bc8044 /toolchain/toolchain-common.in
parent0dd4537a1448da2489d36f0c479cd2a2caf60cd8 (diff)
m68k: gcc coldfire does not provide _sync atomics
Trying to use __sync_fetch_and_add ends with a gcc ICE. This fixes following autobuild failure, by actually disabling the package for coldfire: http://autobuild.buildroot.net/results/d719db11210d42501332586b4485ab0cc1e125dd/ Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'toolchain/toolchain-common.in')
-rw-r--r--toolchain/toolchain-common.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/toolchain/toolchain-common.in b/toolchain/toolchain-common.in
index 1fe28a9e5..847c90581 100644
--- a/toolchain/toolchain-common.in
+++ b/toolchain/toolchain-common.in
@@ -331,6 +331,7 @@ config BR2_TOOLCHAIN_HAS_SYNC_1
bool
default y
depends on !BR2_bfin
+ depends on !BR2_m68k_cf
depends on !BR2_microblaze
depends on !BR2_sparc
depends on !(BR2_arc && !BR2_ARC_ATOMIC_EXT)
@@ -342,6 +343,7 @@ config BR2_TOOLCHAIN_HAS_SYNC_2
config BR2_TOOLCHAIN_HAS_SYNC_4
bool
default y
+ depends on !BR2_m68k_cf
depends on !BR2_sparc
depends on !(BR2_arc && !BR2_ARC_ATOMIC_EXT)