diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-20 20:01:34 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-09-20 20:01:34 +0000 |
commit | 3013c2c76e91d6bca4df554fbe99e301c7a2a537 (patch) | |
tree | 8345d7279012b8f1544b4b9ab28e8b7ad850e573 /config | |
parent | ec5203f41a2bc7499e106ed78a89faa6f3b895d2 (diff) | |
download | gcc-3013c2c76e91d6bca4df554fbe99e301c7a2a537.tar.gz |
* configure.ac (mipsisa*-*-elfoabi*): New stanza.
* configure: Regenerate.
config/
* mt-mips-elfoabi: New file.
gcc/
* doc/invoke.texi (-minterlink-mips16): Document.
* config/mips/mips.opt (minterlink-mips16): New option.
* config/mips/mips.c (mips_function_ok_for_sibcall): Handle
-minterlink-mips16
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128625 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config')
-rw-r--r-- | config/ChangeLog | 4 | ||||
-rw-r--r-- | config/mt-mips-elfoabi | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index faf4d3c871b..868e0e86aad 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk> + + * mt-mips-elfoabi: New file. + 2007-09-07 Richard Sandiford <richard@codesourcery.com> * mt-sde (CFLAGS_FOR_TARGET): Add -mno-gpopt. diff --git a/config/mt-mips-elfoabi b/config/mt-mips-elfoabi new file mode 100644 index 00000000000..49c8ecd32ba --- /dev/null +++ b/config/mt-mips-elfoabi @@ -0,0 +1,6 @@ +# The *-elfoabi configurations are intended to be usable for both +# MIPS16 and non-MIPS16 code, but the libraries are all non-MIPS16. +# Add -minterlink-mips16 so that the libraries can be used with both +# ISA modes. +CFLAGS_FOR_TARGET = -minterlink-mips16 +CXXFLAGS_FOR_TARGET = -minterlink-mips16 |