diff options
author | 2015-11-21 22:10:07 +0100 | |
---|---|---|
committer | 2015-11-22 14:04:01 +0100 | |
commit | eaa876ad31bc83d6c791ddefcad609a596f5b06e (patch) | |
tree | 14cdfb087c2911846318500e4d4b4c535ada3a23 | |
parent | 47cab068fbd29d29d78535787f8f54f2f7f83798 (diff) | |
download | buildroot-eaa876ad31bc83d6c791ddefcad609a596f5b06e.tar.gz buildroot-eaa876ad31bc83d6c791ddefcad609a596f5b06e.tar.bz2 |
bullet: disable on microblaze
gcc doesn't finish compiling btSoftBody.cpp when optimization is
enabled.
Fixes:
http://autobuild.buildroot.net/results/6e4a9ede477b031f47f7e271c38f67f432a3573c
http://autobuild.buildroot.net/results/7dc4ab759dd3b1e3e03fe52c78e31327340bf8c9
http://autobuild.buildroot.net/results/637bae8b2be6c4c64f4f7c661cc8d4606b553538
[Thomas: add reference to gcc bug.]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/bullet/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/bullet/Config.in b/package/bullet/Config.in index fc285ab33a..d4d69d2c9e 100644 --- a/package/bullet/Config.in +++ b/package/bullet/Config.in @@ -1,6 +1,9 @@ config BR2_PACKAGE_BULLET bool "bullet" depends on BR2_INSTALL_LIBSTDCPP + # Affected by + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68476 + depends on !BR2_microblaze help Bullet is a Collision Detection and Rigid Body Dynamics Library. @@ -9,3 +12,4 @@ config BR2_PACKAGE_BULLET comment "bullet needs a toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP + depends on !BR2_microblaze |