summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabrice Fontaine <fontaine.fabrice@gmail.com>2019-03-09 22:12:36 +0100
committerPeter Korsgaard <peter@korsgaard.com>2019-03-25 17:23:17 +0100
commit335165f718f97807df52e49c40f0b6a1ec8686d0 (patch)
treed79f8f2a2acc50c1b2ca39f8109dcb776f7e7852
parent5271f2f65c5adc01989cb2e6e2e710c7991806bd (diff)
downloadbuildroot-335165f718f97807df52e49c40f0b6a1ec8686d0.tar.gz
buildroot-335165f718f97807df52e49c40f0b6a1ec8686d0.zip
package/mongodb: disable on powerpc64
As stated in SConstruct, the altivec runtime test breaks cross-compilation: "This checks for an altivec optimization we use in full text search. Different versions of gcc appear to put output bytes in different parts of the output vector produced by vec_vbpermq. This configure check looks to see which format the compiler produces. NOTE: This breaks cross compiles, as it relies on checking runtime functionality for the environment we're in." Fixes: - http://autobuild.buildroot.org/results/162198617979a83b66f70ed6013251942ed04d67 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit f9fd1931410ec7f68e0f310efb9c5f616bb73ea8) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--package/mongodb/Config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mongodb/Config.in b/package/mongodb/Config.in
index 4696eb7660..7df502add6 100644
--- a/package/mongodb/Config.in
+++ b/package/mongodb/Config.in
@@ -3,7 +3,7 @@ config BR2_PACKAGE_MONGODB_ARCH_SUPPORTS
bool
# ARM needs LDREX/STREX, so ARMv6+
default y if BR2_arm && !BR2_ARM_CPU_ARMV4 && !BR2_ARM_CPU_ARMV5
- default y if BR2_aarch64 || BR2_powerpc64 || BR2_x86_64
+ default y if BR2_aarch64 || BR2_x86_64
config BR2_PACKAGE_MONGODB
bool "mongodb"
OpenPOWER on IntegriCloud