summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2017-07-23 22:03:38 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-07-24 17:56:14 +0200
commit4f3fd7460c7cb004cc4f7f75451d3901098910af (patch)
tree562195ca9cd97afcb56d1abbacb5e0b7a875bb7e
parentb6bbb0782a13e49c43199a335bc51447b78f62d3 (diff)
downloadbuildroot-4f3fd7460c7cb004cc4f7f75451d3901098910af.tar.gz
buildroot-4f3fd7460c7cb004cc4f7f75451d3901098910af.zip
package/x265: disable altivec on ppc64
Disable altivec support until gcc problems are fixed: https://bitbucket.org/multicoreware/x265/issues/320/fail-to-build-on-power8-le#comment-34076791 Fixes http://autobuild.buildroot.net/results/419/41910d44ff98c60a6bb9fd3b6a10bd4d0b98d646/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/x265/x265.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/package/x265/x265.mk b/package/x265/x265.mk
index 2907ba373a..2facf2c1dc 100644
--- a/package/x265/x265.mk
+++ b/package/x265/x265.mk
@@ -16,6 +16,12 @@ ifeq ($(BR2_i386)$(BR2_x86_64),y)
X265_DEPENDENCIES += host-yasm
endif
+# disable altivec, it has build issues
+# https://bitbucket.org/multicoreware/x265/issues/320/
+ifeq ($(BR2_powerpc64)$(BR2_powerpc64le),y)
+X265_CONF_OPTS += -DENABLE_ALTIVEC=OFF
+endif
+
ifeq ($(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),y)
X265_CONF_OPTS += -DENABLE_SHARED=ON -DENABLE_PIC=ON
else
OpenPOWER on IntegriCloud