diff options
author | Richard Henderson <rth@redhat.com> | 2001-08-09 15:33:35 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-08-09 15:33:35 -0700 |
commit | 2cc07db4b089b8b3df05261f1d7acbc96d2e720a (patch) | |
tree | ddb2d5519f49bc33648c25225b8b8ba84df590b9 /gcc/config.gcc | |
parent | ef8d8b8922a034dfac5cff9d5fa781dc57c49ed0 (diff) | |
download | gcc-2cc07db4b089b8b3df05261f1d7acbc96d2e720a.zip gcc-2cc07db4b089b8b3df05261f1d7acbc96d2e720a.tar.gz gcc-2cc07db4b089b8b3df05261f1d7acbc96d2e720a.tar.bz2 |
Move constructor/destructor handling into target hooks.
From-SVN: r44747
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 087101d..433e77c5 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -379,7 +379,7 @@ a29k-*-bsd* | a29k-*-sym1*) use_collect2=yes ;; a29k-*-udi | a29k-*-coff) - tm_file="${tm_file} dbxcoff.h a29k/udi.h" + tm_file="${tm_file} dbxcoff.h" tmake_file=a29k/t-a29kbare ;; a29k*-*-rtems*) @@ -390,7 +390,7 @@ a29k*-*-rtems*) fi ;; a29k-wrs-vxworks*) - tm_file="${tm_file} dbxcoff.h a29k/udi.h a29k/vx29k.h" + tm_file="${tm_file} dbxcoff.h a29k/vx29k.h" tmake_file=a29k/t-vx29k extra_parts="crtbegin.o crtend.o" thread_file='vxworks' @@ -519,6 +519,9 @@ alpha*-dec-vms*) xm_file=alpha/xm-vms.h tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee" ;; +arc-*-elf*) + extra_parts="crtinit.o crtfini.o" + ;; arm*-*-rtems*) tm_file=arm/rtems-elf.h tmake_file="arm/t-arm-elf t-rtems" @@ -526,9 +529,6 @@ arm*-*-rtems*) thread_file='rtems' fi ;; -arc-*-elf*) - extra_parts="crtinit.o crtfini.o" - ;; arm-*-coff* | armel-*-coff*) tm_file=arm/coff.h tmake_file=arm/t-arm-coff @@ -3378,15 +3378,6 @@ then fi fi -# No need for collect2 if we have the GNU linker. -# Actually, there is now; GNU ld doesn't handle the EH info or -# collecting for shared libraries. -#case x$gnu_ld in -#xyes) -# use_collect2= -# ;; -#esac - # Save data on machine being used to compile GCC in build_xm_file. # Save data on host machine in vars host_xm_file and host_xmake_file. if test x$pass1done = x |