index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2023-03-05 11:01:29 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2023-03-05 11:01:29 +0100 |
commit | dc01853850a556477dbdede416136733ace9bd01 (patch) | |
tree | 280275ba227249d33c81d674e9ad2b2350994448 /extra/clisp | |
parent | 7b4b545d762a65781aca6c90172dfb28a70db727 (diff) |
-rw-r--r-- | extra/clisp/PKGBUILD | 18 |
diff --git a/extra/clisp/PKGBUILD b/extra/clisp/PKGBUILD new file mode 100644 index 00000000..16aecfee --- /dev/null +++ b/extra/clisp/PKGBUILD @@ -0,0 +1,18 @@ +# no LTO +sed -i " + /^options=/ a options+=('!lto') +" PKGBUILD +eval "$( + declare -f build | \ + sed ' + s/-ffat-lto-objects// + ' +)" + +# alignment of function (from VoidLinux) +eval "$( + declare -f build | \ + sed ' + s|./configure|CFLAGS+=" -falign-functions=4" ./configure| + ' +)" |