diff options
author | skw | 2024-05-29 01:13:26 -0400 |
---|---|---|
committer | skw | 2024-05-29 01:13:26 -0400 |
commit | 4a5778d95234230d15f3e0a44a79b82ceaefb596 (patch) | |
tree | 1f1f38f93761c88bf59a89d37e10f1c10ea29daf | |
parent | 89a46e3d86da2c6780e9aec86579a9556fced69f (diff) | |
download | aur-4a5778d95234230d15f3e0a44a79b82ceaefb596.tar.gz |
disable lto
im unsure if this is an issue with upstream or just my computer, but
as-is compilation fails with a wrong lto version
disabling lto allows compilation to finish correctly, and lto doesnt
gain us much in this project anyway
-rw-r--r-- | PKGBUILD | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -19,6 +19,7 @@ makedepends=('cmake' 'git' 'zlib' 'xz' 'mariadb-libs' 'protobuf' 'qt6-svg' 'qt6- checkdepends=('gtest' 'valgrind') source=("git+https://github.com/cockatrice/cockatrice") sha256sums=('SKIP') +options=('!lto') pkgver() { cd "${_pkgbase}" || exit 1 |