diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2021-09-23 11:15:27 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2021-09-23 11:15:27 +0200 |
commit | 73e7af3465ab5be1015d0f8b7c06a4ee665c1e08 (patch) | |
tree | 53d09cc798cf7d6d8c81a3752b75ae00bdbb1f32 /community | |
parent | 811efa1d21f8ef6b921050bb28c6d231345a654c (diff) | |
download | packages-73e7af3465ab5be1015d0f8b7c06a4ee665c1e08.tar.xz |
community/z3: do not do LTO on i486 (out of memory error)
Diffstat (limited to 'community')
-rw-r--r-- | community/z3/PKGBUILD | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/community/z3/PKGBUILD b/community/z3/PKGBUILD new file mode 100644 index 00000000..7b727e00 --- /dev/null +++ b/community/z3/PKGBUILD @@ -0,0 +1,9 @@ +# LTO on i486 results in out-of-memory +if [ "$CARCH" == 'i486' ]; then + eval "$( + declare -f build | \ + sed ' + s/-DZ3_LINK_TIME_OPTIMIZATION=1/-DZ3_LINK_TIME_OPTIMIZATION=0/ + ' + )" +fi |