summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWheelchairArtist2024-03-19 14:56:00 +0100
committerWheelchairArtist2024-03-19 14:56:00 +0100
commit455158d7e0983afbfb54601aa278fa1efc298fea (patch)
treed405fff24351fdb5577342b66448b87e1c88369a
parent4117df5f7fab3813fc2e44db33f89adbe47d5b06 (diff)
downloadaur-455158d7e0983afbfb54601aa278fa1efc298fea.tar.gz
Disable LTO when building WineASIO
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD8
2 files changed, 4 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b7e950736562..e140f314cd58 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = wineasio
pkgdesc = ASIO driver implementation for Wine
pkgver = 1.2.0
- pkgrel = 5
+ pkgrel = 6
url = https://github.com/wineasio/wineasio
install = wineasio.install
arch = x86_64
@@ -12,6 +12,7 @@ pkgbase = wineasio
depends = python-pyqt5
depends = realtime-privileges
depends = wine
+ options = !lto
options = !debug
source = https://github.com/wineasio/wineasio/releases/download/v1.2.0/wineasio-1.2.0.tar.gz
sha256sums = 13f20c7b3d45b474833e6c60cb58bcad7295e97dd39239bf00f85c02272cc0f4
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
}