]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/x265: disable altivec on ppc64
authorBernd Kuhls <bernd.kuhls@t-online.de>
Sun, 23 Jul 2017 20:03:38 +0000 (22:03 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Tue, 25 Jul 2017 21:54:13 +0000 (23:54 +0200)
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>
(cherry picked from commit 4f3fd7460c7cb004cc4f7f75451d3901098910af)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/x265/x265.mk

index 2907ba373a7e766ef5daee127d3cb57654e2425f..2facf2c1dc24d90df7def3b1fe142bcbdb3611bf 100644 (file)
@@ -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