diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-12-06 17:42:48 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-12-06 17:42:48 +0000 |
commit | 4432386e33db93bc331c400f93840f1b835bad05 (patch) | |
tree | aadfd5eadeb358925998a3d19811daee12f5fcef /config/mt-sde | |
parent | 82ba6513749be5294e8b40323322a2add4681310 (diff) | |
download | gcc-4432386e33db93bc331c400f93840f1b835bad05.tar.gz |
config/
* mt-sde (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Use +=, not =.
* mt-mips-elfoabi: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@130652 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config/mt-sde')
-rw-r--r-- | config/mt-sde | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/mt-sde b/config/mt-sde index 775e50dd732..cb204203db8 100644 --- a/config/mt-sde +++ b/config/mt-sde @@ -6,5 +6,5 @@ # has two purposes: it allows libraries to be used in situations where # $gp != our _gp, and it allows them to be built with -G8 while # retaining link compability with -G0 and -G4. -CFLAGS_FOR_TARGET = -Os -minterlink-mips16 -mcode-xonly -mno-gpopt -CXXFLAGS_FOR_TARGET = -Os -minterlink-mips16 -mcode-xonly -mno-gpopt +CFLAGS_FOR_TARGET += -Os -minterlink-mips16 -mcode-xonly -mno-gpopt +CXXFLAGS_FOR_TARGET += -Os -minterlink-mips16 -mcode-xonly -mno-gpopt |