* scripttempl/i386coff.sc: If relocating, don't put .init and
authorIan Lance Taylor <ian@airs.com>
Mon, 11 Apr 1994 16:35:39 +0000 (16:35 +0000)
committerIan Lance Taylor <ian@airs.com>
Mon, 11 Apr 1994 16:35:39 +0000 (16:35 +0000)
.fini sections into .text; keep them separate.
* config/i386sco.mh (HOSTING_CRT0): If ../gcc/crtbegin.o does not
exist, get crtbegin based on gcc -print-libgcc-file-name.
(HOSTING_LIBS): Similar change for ../gcc/crtend.o.

ld/ChangeLog
ld/config/i386sco.mh

index ef81d98fb3026be9c978c7d193842bdd300b909e..1de42280b4e5583097a9eda67cb9cb34529b79e0 100644 (file)
@@ -1,3 +1,11 @@
+Mon Apr 11 12:32:57 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
+
+       * scripttempl/i386coff.sc: If relocating, don't put .init and
+       .fini sections into .text; keep them separate.
+       * config/i386sco.mh (HOSTING_CRT0): If ../gcc/crtbegin.o does not
+       exist, get crtbegin based on gcc -print-libgcc-file-name.
+       (HOSTING_LIBS): Similar change for ../gcc/crtend.o.
+
 Wed Apr  6 00:09:37 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
 
        * configure.in (hppa*-*-*elf*): Don't require "-hp-" for the
index 2646840a455eda85d3e8fcd1427c036aa39c4487..bf1a282311715f9c2059dad9f788c520296b4b73 100644 (file)
@@ -1,4 +1,4 @@
 # For testing, we want to use /lib/crt1.o and /lib/crtn.o so that
 # constructors work properly.
-HOSTING_CRT0=/lib/crt1.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; fi`
-HOSTING_LIBS=`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else gcc -print-libgcc-file-name; fi`  -lc `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; fi` /lib/crtn.o
+HOSTING_CRT0=/lib/crt1.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crtbegin.o/'; fi`
+HOSTING_LIBS=`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else gcc -print-libgcc-file-name; fi` -lc `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crtend.o/'; fi` /lib/crtn.o