diff options
author | Bob Wilson <bob.wilson@acm.org> | 2003-01-24 21:51:03 +0000 |
---|---|---|
committer | Bob Wilson <bwilson@gcc.gnu.org> | 2003-01-24 21:51:03 +0000 |
commit | 1f37a5b273c35029f448d9c32277d42a45ff784f (patch) | |
tree | 5aa77ca74f9837ddb36d9663b787a655a0648742 /gcc/config.gcc | |
parent | 84f5e1b11f08c88e910689f2f530314260347ee3 (diff) | |
download | gcc-1f37a5b273c35029f448d9c32277d42a45ff784f.zip gcc-1f37a5b273c35029f448d9c32277d42a45ff784f.tar.gz gcc-1f37a5b273c35029f448d9c32277d42a45ff784f.tar.bz2 |
config.gcc (xtensa-*-elf*): Removed assignments to with_newlib, extra_parts, and fixincludes.
* config.gcc (xtensa-*-elf*): Removed assignments to with_newlib,
extra_parts, and fixincludes. Add xtensa/t-elf tmake_file.
(xtensa-*-linux*): Add xtensa/t-linux tmake_file.
* config/xtensa/crti.asm: New file.
* config/xtensa/crtn.asm: New file.
* config/xtensa/t-elf: New file.
* config/xtensa/t-linux: New file.
* config/xtensa/t-xtensa: Add rules for crti.o and crtn.o.
Move various CFLAGS settings to new t-elf file.
From-SVN: r61735
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index dd06d69..b287bd3 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -2666,14 +2666,11 @@ xstormy16-*-elf) ;; xtensa-*-elf*) tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h" - with_newlib=yes - tmake_file=xtensa/t-xtensa - extra_parts="crtbegin.o crtend.o" - fixincludes=Makefile.in # newlib headers should be OK + tmake_file="xtensa/t-xtensa xtensa/t-elf" ;; xtensa-*-linux*) tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h" - tmake_file="t-linux xtensa/t-xtensa" + tmake_file="t-linux xtensa/t-xtensa xtensa/t-linux" ;; *) echo "*** Configuration $machine not supported" 1>&2 |