diff options
author | SUGIOKA Toshinobu <sugioka@itonet.co.jp> | 2003-08-01 18:05:16 +0900 |
---|---|---|
committer | Kaz Kojima <kkojima@gcc.gnu.org> | 2003-08-01 09:05:16 +0000 |
commit | 2fdd01a09a1376515255cfb8a568f682dce80fbc (patch) | |
tree | 2fd7bee7c37ddcaedda5f80680c445ca56d41e54 | |
parent | 522da2bf7e2cf6c457cf50bcb3ba80d3ea329e79 (diff) | |
download | gcc-2fdd01a09a1376515255cfb8a568f682dce80fbc.zip gcc-2fdd01a09a1376515255cfb8a568f682dce80fbc.tar.gz gcc-2fdd01a09a1376515255cfb8a568f682dce80fbc.tar.bz2 |
config.gcc (sh-*-linux*): Do not override sh/t-linux with sh/t-le.
2003-07-31 SUGIOKA Toshinobu <sugioka@itonet.co.jp>
* config.gcc (sh-*-linux*): Do not override sh/t-linux with sh/t-le.
From-SVN: r70040
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config.gcc | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ae5cceb..cd4c1ac 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-07-31 SUGIOKA Toshinobu <sugioka@itonet.co.jp> + + * config.gcc (sh-*-linux*): Do not override sh/t-linux with sh/t-le. + 2003-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * builtin-types.def: Use `LONGDOUBLE' instead of `LONG_DOUBLE' diff --git a/gcc/config.gcc b/gcc/config.gcc index c9266a5..093a114 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1832,7 +1832,7 @@ sh-*-rtems*) fi ;; sh-*-linux* | sh[2346lbe]*-*-linux*) - tmake_file="sh/t-sh sh/t-elf t-slibgcc-elf-ver t-linux sh/t-linux" + tmake_file="sh/t-sh sh/t-elf t-slibgcc-elf-ver t-linux" case $machine in sh*be-*-* | sh*eb-*-*) ;; *) @@ -1840,6 +1840,7 @@ sh-*-linux* | sh[2346lbe]*-*-linux*) tmake_file="${tmake_file} sh/t-le" ;; esac + tmake_file="${tmake_file} sh/t-linux" tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/linux.h" case $machine in sh64*) |