From 06df2c166abdf7f9bbd6d473149b777c98809649 Mon Sep 17 00:00:00 2001 From: q66 Date: Thu, 17 Jan 2019 02:18:27 +0100 Subject: [PATCH] qt5-webkit: enable all-in-one build on ppc64 Ubuntu disables it, as a workaround for compiler ICEs. Turns out that is not a problem anymore with our GCC 8.2.0, so enable AIO build just like on every other platform. [ci skip] --- srcpkgs/qt5-webkit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qt5-webkit/template b/srcpkgs/qt5-webkit/template index b8eaaa0d17f..fbb5f4952b7 100644 --- a/srcpkgs/qt5-webkit/template +++ b/srcpkgs/qt5-webkit/template @@ -32,7 +32,7 @@ case "$XBPS_TARGET_MACHINE" in LIBS+=" -latomic" ;; ppc64*) # no JIT on ppc64 and other build workarounds - configure_args+=" -DENABLE_JIT=OFF -DUSE_SYSTEM_MALLOC=ON -DENABLE_ALLINONE_BUILD=OFF" + configure_args+=" -DENABLE_JIT=OFF -DUSE_SYSTEM_MALLOC=ON" ;; i686*) # try to reduce memory footprint when linking by using gold configure_args+=" -DUSE_LD_GOLD=ON"