diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2013-11-02 03:20:37 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2013-11-02 03:20:37 +0000 |
commit | 789b8b1b6508b6d45301f13a7e8ee30c8b5779e2 (patch) | |
tree | c792547bac382fb772ab1ca36131efaed823aae3 /eclass | |
parent | Account for leading whitespace in append-cflags tests. (diff) | |
download | gentoo-2-789b8b1b6508b6d45301f13a7e8ee30c8b5779e2.tar.gz gentoo-2-789b8b1b6508b6d45301f13a7e8ee30c8b5779e2.tar.bz2 gentoo-2-789b8b1b6508b6d45301f13a7e8ee30c8b5779e2.zip |
Add -fno-builtin* to ALLOWED_FLAGS - requested by Justin Vrooman.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/flag-o-matic.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index f5be34b12fba..624721ea2e7c 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1042 2013/11/02 03:17:58 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1043 2013/11/02 03:20:37 dirtyepic Exp $ + + 02 Nov 2013; Ryan Hill <dirtyepic@gentoo.org> flag-o-matic.eclass: + Add -fno-builtin* to ALLOWED_FLAGS - requested by Justin Vrooman. 02 Nov 2013; Ryan Hill <dirtyepic@gentoo.org> tests/flag-o-matic.sh: Account for leading whitespace in append-cflags tests. diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass index 798c42839318..0339f932e47a 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.191 2013/10/27 07:21:05 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.192 2013/11/02 03:20:37 dirtyepic Exp $ # @ECLASS: flag-o-matic.eclass # @MAINTAINER: @@ -35,7 +35,7 @@ setup-allowed-flags() { # allow a bunch of flags that negate features / control ABI ALLOWED_FLAGS+=" -fno-stack-protector -fno-stack-protector-all \ -fno-strict-aliasing -fno-bounds-checking -fstrict-overflow \ - -fno-omit-frame-pointer" + -fno-omit-frame-pointer -fno-builtin*" ALLOWED_FLAGS+=" -mregparm -mno-app-regs -mapp-regs -mno-mmx -mno-sse \ -mno-sse2 -mno-sse3 -mno-ssse3 -mno-sse4 -mno-sse4.1 -mno-sse4.2 \ -mno-avx -mno-aes -mno-pclmul -mno-sse4a -mno-3dnow -mno-popcnt \ |