qt5-webkit: turn on ALLINONE_BUILD for i686

This commit is contained in:
maxice8 2019-01-17 00:06:44 -02:00
parent 1cba9c09cd
commit caf57e3f63
No known key found for this signature in database
GPG key ID: 543B9D4F4299F06B

View file

@ -34,9 +34,8 @@ case "$XBPS_TARGET_MACHINE" in
ppc64*) # no JIT on ppc64 and other build workarounds
configure_args+=" -DENABLE_JIT=OFF -DUSE_SYSTEM_MALLOC=ON -DENABLE_ALLINONE_BUILD=OFF"
;;
i686*) # try to reduce memory footprint when linking
# try to reduce memory footprint when linking by using gold
configure_args+=" -DENABLE_ALLINONE_BUILD=OFF -DUSE_LD_GOLD=ON"
i686*) # try to reduce memory footprint when linking by using gold
configure_args+=" -DUSE_LD_GOLD=ON"
;;
esac