summaryrefslogtreecommitdiff
path: root/community/z3/PKGBUILD
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2021-09-23 11:15:27 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2021-09-23 11:15:27 +0200
commit73e7af3465ab5be1015d0f8b7c06a4ee665c1e08 (patch)
tree53d09cc798cf7d6d8c81a3752b75ae00bdbb1f32 /community/z3/PKGBUILD
parent811efa1d21f8ef6b921050bb28c6d231345a654c (diff)
downloadpackages-73e7af3465ab5be1015d0f8b7c06a4ee665c1e08.tar.xz
community/z3: do not do LTO on i486 (out of memory error)
Diffstat (limited to 'community/z3/PKGBUILD')
-rw-r--r--community/z3/PKGBUILD9
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