diff options
author | Joshua Kinard <kumba@gentoo.org> | 2003-06-25 05:56:40 +0000 |
---|---|---|
committer | Joshua Kinard <kumba@gentoo.org> | 2003-06-25 05:56:40 +0000 |
commit | eee3bc892c189b66e52d6c3b90ba944fa904d974 (patch) | |
tree | a1466e56a150ff888194a9a9523567460d48b894 /eclass/flag-o-matic.eclass | |
parent | Version Bump. (diff) | |
download | historical-eee3bc892c189b66e52d6c3b90ba944fa904d974.tar.gz historical-eee3bc892c189b66e52d6c3b90ba944fa904d974.tar.bz2 historical-eee3bc892c189b66e52d6c3b90ba944fa904d974.zip |
Added 5 MIPS-specific flags to ALLOWED_FLAGS. -mips[1-4] specifies the
ISA Level while -mabi specifies which MIPS ABI to use.
Diffstat (limited to 'eclass/flag-o-matic.eclass')
-rw-r--r-- | eclass/flag-o-matic.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass index 349df81c85c9..91f25e69d961 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.20 2003/06/25 03:27:43 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.21 2003/06/25 05:56:40 kumba Exp $ # # Author Bart Verwilst <verwilst@gentoo.org> @@ -36,7 +36,7 @@ INHERITED="$INHERITED $ECLASS" # C[XX]FLAGS that we allow in strip-flags -ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g" +ALLOWED_FLAGS="-O -O1 -O2 -mcpu -march -mtune -fstack-protector -pipe -g -mips1 -mips2 -mips3 -mips4 -mabi" # C[XX]FLAGS that we are think is ok, but needs testing # NOTE: currently -Os have issues with gcc3 and K6* arch's |