diff options
author | Joshua Kinard <kumba@gentoo.org> | 2017-02-20 18:47:51 -0500 |
---|---|---|
committer | Joshua Kinard <kumba@gentoo.org> | 2017-02-20 18:47:51 -0500 |
commit | a5ea247b348158c70205b22b3894437be0addd60 (patch) | |
tree | 9fc6939e1ee9b044affcb7e6b186a3dcf37f433a /eclass | |
parent | kde-apps/kstars: USE=indi requires USE=fits (diff) | |
download | gentoo-a5ea247b348158c70205b22b3894437be0addd60.tar.gz gentoo-a5ea247b348158c70205b22b3894437be0addd60.tar.bz2 gentoo-a5ea247b348158c70205b22b3894437be0addd60.zip |
flag-o-matic.eclass: Add -fno-stack-check to ALLOWED_FLAGS
The -fno-stack-check flag is equivalent to -fstack-check=no, so
support both in ALLOWED_FLAGS.
Signed-off-by: Joshua Kinard <kumba@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/flag-o-matic.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass index 57d207b08313..5b8a054079d2 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.eclass @@ -25,7 +25,7 @@ all-flag-vars() { setup-allowed-flags() { ALLOWED_FLAGS=( -pipe -O '-O[12sg]' -mcpu -march -mtune - '-fstack-protector*' '-fsanitize*' '-fstack-check*' + '-fstack-protector*' '-fsanitize*' '-fstack-check*' -fno-stack-check -fbounds-check -fbounds-checking -fno-strict-overflow -fno-PIE -fno-pie -nopie -no-pie -fno-unit-at-a-time -g '-g[0-9]' -ggdb '-ggdb[0-9]' '-gdwarf-*' gstabs -gstabs+ |