pixman: explicitly disable LTO on 32-bit ppc
This commit is contained in:
parent
1c5be34e17
commit
dab3baff8c
1 changed files with 7 additions and 0 deletions
|
@ -23,6 +23,13 @@ if [ "$XBPS_CHECK_PKGS" ]; then
|
|||
configure_args+=" -Dlibpng=enabled -Dopenmp=enabled"
|
||||
fi
|
||||
|
||||
# disable LTO on 32-bit ppc since our use of -mno-altivec
|
||||
# conflicts with the ppc accelerated paths in the lto pass
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
ppc64*) ;;
|
||||
ppc*) configure_args+=" -Db_lto=false" ;;
|
||||
esac
|
||||
|
||||
post_install() {
|
||||
vlicense COPYING LICENSE
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue