diff options
author | Catherine Moore <clm@cygnus.com> | 1999-04-14 10:46:50 +0000 |
---|---|---|
committer | Catherine Moore <clm@gcc.gnu.org> | 1999-04-14 06:46:50 -0400 |
commit | d8265d2995912b37d74cd9a9dd18f5beff04e66d (patch) | |
tree | 1e5592b544936dacfc7a9952467ed24b511b0c29 /gcc/configure | |
parent | 4e46365be1d700724ebf25f3f86ac069a4b32915 (diff) | |
download | gcc-d8265d2995912b37d74cd9a9dd18f5beff04e66d.zip gcc-d8265d2995912b37d74cd9a9dd18f5beff04e66d.tar.gz gcc-d8265d2995912b37d74cd9a9dd18f5beff04e66d.tar.bz2 |
Wed Apr 14 10:48:03 1999 Catherine Moore <clm@cygnus.com>
* config/mips/elf.h, config/mips/elf64.h
(CTORS_SECTION_ASM_OP): Define.
(DTORS_SECTION_ASM_OP): Define.
(EXTRA_SECTIONS): Define.
(INVOKE__main): Define.
(NAME__MAIN): Define.
(SYMBOL__MAIN): Define.
(EXTRA_SECTIONS_FUNCTIONS): Define.
(SECTION_FUNCTION_TEMPLATE): Define.
(ASM_OUTPUT_CONSTRUCTOR): Define.
(ASM_OUTPUT_DESTRUCTOR): Define.
(CTOR_LIST_BEGIN): Define.
(CTOR_LIST_END): Define.
(DTOR_LIST_BEGIN): Define.
(DTOR_LIST_END): Define.
(LIB_SPEC): Define.
(STARTFILE_SPEC): Define.
(ENDFILE_SPEC): Define.
* config/mips/linux.h: Undefine all of the above.
* config/mips/rtems64.h: Likewise.
* config/mips/t-r3900: Likewise.
* config/mips/t-elf: New file.
* config/mips/vxworks.h: New file.
* configure.in (mips-wrs-vxworks): Use mips/vxworks.h.
(mips*-*-*elf*): Use t-elf instead of t-ecoff.
* configure: Regenerate.
From-SVN: r26446
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/configure b/gcc/configure index 53e28e6..8c3a82a 100755 --- a/gcc/configure +++ b/gcc/configure @@ -4434,7 +4434,7 @@ for machine in $build $host $target; do # fi ;; mips-wrs-vxworks) - tm_file="mips/elf.h libgloss.h" + tm_file="mips/elf.h libgloss.h mips/vxworks.h" tmake_file=mips/t-ecoff gas=yes gnu_ld=yes @@ -4841,38 +4841,38 @@ for machine in $build $host $target; do ;; mipsel-*-elf*) tm_file="mips/elfl.h libgloss.h" - tmake_file=mips/t-ecoff + tmake_file=mips/t-elf ;; mips-*-elf*) - tm_file="mips/elf.h libgloss.h" - tmake_file=mips/t-ecoff + tm_file="mips/elf.h" + tmake_file=mips/t-elf ;; mips64el-*-elf*) - tm_file="mips/elfl64.h libgloss.h" - tmake_file=mips/t-ecoff + tm_file="mips/elfl64.h" + tmake_file=mips/t-elf ;; mips64orionel-*-elf*) tm_file="mips/elforion.h mips/elfl64.h libgloss.h" - tmake_file=mips/t-ecoff + tmake_file=mips/t-elf ;; mips64-*-elf*) - tm_file="mips/elf64.h libgloss.h" - tmake_file=mips/t-ecoff + tm_file="mips/elf64.h" + tmake_file=mips/t-elf ;; mips64orion-*-elf*) tm_file="mips/elforion.h mips/elf64.h libgloss.h" - tmake_file=mips/t-ecoff + tmake_file=mips/t-elf ;; mips64orion-*-rtems*) tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h" tmake_file="mips/t-ecoff t-rtems" ;; mipstx39el-*-elf*) - tm_file="mips/r3900.h mips/elfl.h mips/abi64.h libgloss.h" + tm_file="mips/r3900.h mips/elfl.h mips/abi64.h" tmake_file=mips/t-r3900 ;; mipstx39-*-elf*) - tm_file="mips/r3900.h mips/elf.h mips/abi64.h libgloss.h" + tm_file="mips/r3900.h mips/elf.h mips/abi64.h" tmake_file=mips/t-r3900 # FIXME mips-elf should be fixed to use crtstuff. use_collect2=yes |