summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--PKGBUILD7
1 files changed, 4 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index dd222a2..90b7df5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,7 +9,7 @@
pkgname=0ad
pkgver=a23.1
_pkgver=0.0.23b-alpha
-pkgrel=10
+pkgrel=11
pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
arch=('x86_64')
url="https://play0ad.com/"
@@ -47,8 +47,9 @@ build() {
CXXFLAGS+=' -DU_USING_ICU_NAMESPACE=1'
# -fPIE and -pie break compilation
- export CFLAGS="$CFLAGS -O3 -fstack-protector-all -flto=2 -fPIC"
- export CXXFLAGS="$CXXFLAGS -O3 -fstack-protector-all -flto=2 -fPIC"
+ # 0ad is prone to OOM, use 1 thread per 8GB ram
+ export CFLAGS="$CFLAGS -O3 -fstack-protector-all -flto=4 -fPIC"
+ export CXXFLAGS="$CXXFLAGS -O3 -fstack-protector-all -flto=4 -fPIC"
export SDL2_CONFIG="pkg-config sdl2"
export WX_CONFIG="wx-config-gtk3"