diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2007-12-06 17:44:07 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2007-12-06 17:44:07 +0000 |
commit | 1c9e0298c701965b3709f865d9f43c17bd73c909 (patch) | |
tree | 08993ae52ae1d4b569acbfc49909efb8c428ac88 /config/mt-sde | |
parent | 2fff4d11eea7342e1fd8b9db8ef21749ce9f2d74 (diff) | |
download | binutils-1c9e0298c701965b3709f865d9f43c17bd73c909.zip binutils-1c9e0298c701965b3709f865d9f43c17bd73c909.tar.gz binutils-1c9e0298c701965b3709f865d9f43c17bd73c909.tar.bz2 |
config/
* mt-sde (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Use +=, not =.
* mt-mips-elfoabi: Likewise.
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 775e50d..cb20420 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 |