summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorhaawda2021-05-10 22:20:23 +0200
committerhaawda2021-05-10 22:20:23 +0200
commita0d0bdb8f05ac5f60c6ddff3306806b834da5318 (patch)
treec3340e68741aa7c10ccc2346d2cb2d09a1915f1b /PKGBUILD
parentef0f253751e984383f4ceaf57ec5e6519aa26a12 (diff)
downloadaur-a0d0bdb8f05ac5f60c6ddff3306806b834da5318.tar.gz
add additional C{XX}FLAGS
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 596af586dbf2..1622ba11034f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=gambit
pkgver=15.1.1
-pkgrel=6
+pkgrel=7
pkgdesc="Tools for doing computation in game theory"
arch=('i686' 'x86_64')
url="http://www.gambit-project.org"
@@ -25,7 +25,8 @@ build() {
libtoolize
automake --add-missing
autoconf
- CC=gcc-6 CXX=g++-6 ./configure --prefix=/usr --disable-enumpoly
+ CC=gcc-6 CXX=g++-6 CFLAGS=" -fstack-protector" \
+ CXXFLAGS=" -fstack-protector" ./configure --prefix=/usr --disable-enumpoly
make
cd src/python
python2 setup.py build