summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorWheelchairArtist2024-03-19 14:56:00 +0100
committerWheelchairArtist2024-03-19 14:56:00 +0100
commit455158d7e0983afbfb54601aa278fa1efc298fea (patch)
treed405fff24351fdb5577342b66448b87e1c88369a /PKGBUILD
parent4117df5f7fab3813fc2e44db33f89adbe47d5b06 (diff)
downloadaur-455158d7e0983afbfb54601aa278fa1efc298fea.tar.gz
Disable LTO when building WineASIO
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD8
1 files changed, 2 insertions, 6 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 5d35de027022..ddf886ba01f8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,14 +7,14 @@
pkgname=wineasio
pkgver=1.2.0
-pkgrel=5
+pkgrel=6
pkgdesc="ASIO driver implementation for Wine"
url="https://github.com/wineasio/wineasio"
arch=('x86_64')
license=('LGPL')
-options=('!debug')
+options=('!lto' '!debug')
depends=('jack' 'lib32-jack' 'python-pyqt5' 'realtime-privileges' 'wine')
makedepends=('gcc')
@@ -34,10 +34,6 @@ prepare(){
build() {
cd "$pkgname-$pkgver"
-
- # fix compiling errors coming from host CFLAGS by removing those
- CFLAGS=""
-
make 32
make 64
}