diff options
author | Ralf Corsepius <corsepiu@faw.uni-ulm.de> | 2003-09-19 13:24:47 +0000 |
---|---|---|
committer | Joel Sherrill <joel@gcc.gnu.org> | 2003-09-19 13:24:47 +0000 |
commit | c7fcd90b72a8183095d33c18d9ff044ff6eee596 (patch) | |
tree | a0cb807199fe15872532b5e634707129be98907f | |
parent | 7dd87381a62c5470773ec3854f8a9e37b3ccde19 (diff) | |
download | gcc-c7fcd90b72a8183095d33c18d9ff044ff6eee596.zip gcc-c7fcd90b72a8183095d33c18d9ff044ff6eee596.tar.gz gcc-c7fcd90b72a8183095d33c18d9ff044ff6eee596.tar.bz2 |
t-rtems: New.
2003-09-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* config/mips/t-rtems: New.
* config.gcc (mips*-*-rtems*): Use config/mips/t-rtems.
From-SVN: r71569
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config.gcc | 2 | ||||
-rw-r--r-- | gcc/config/mips/t-rtems | 5 |
3 files changed, 12 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 72c019e..99b588b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-09-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de> + + * config/mips/t-rtems: New. + * config.gcc (mips*-*-rtems*): Use config/mips/t-rtems. + + 2003-09-19 Kelley Cook <kelleycook@wideopenwest.com> * cgraph.c: Fix typo in debugging output. diff --git a/gcc/config.gcc b/gcc/config.gcc index 1c4629b..2652d03 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1480,7 +1480,7 @@ mips64orion-*-elf* | mips64orionel-*-elf*) ;; mips*-*-rtems*) tm_file="${tm_file} mips/elf.h mips/rtems.h rtems.h" - tmake_file="mips/t-elf t-rtems" + tmake_file="mips/t-elf t-rtems mips/t-rtems" if test x$enable_threads = xyes; then thread_file='rtems' fi diff --git a/gcc/config/mips/t-rtems b/gcc/config/mips/t-rtems new file mode 100644 index 0000000..bd7b7ad --- /dev/null +++ b/gcc/config/mips/t-rtems @@ -0,0 +1,5 @@ +# Custom multilibs for RTEMS + +MULTILIB_OPTIONS = mips1/mips3 msoft-float/msingle-float EL/EB +MULTILIB_DIRNAMES = mips1 mips3 soft-float single el eb +MULTILIB_MATCHES = msingle-float=m4650 |