mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
* 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.
This commit is contained in:
@ -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)
|
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
|
* configure.in (hppa*-*-*elf*): Don't require "-hp-" for the
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# For testing, we want to use /lib/crt1.o and /lib/crtn.o so that
|
# For testing, we want to use /lib/crt1.o and /lib/crtn.o so that
|
||||||
# constructors work properly.
|
# constructors work properly.
|
||||||
HOSTING_CRT0=/lib/crt1.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; fi`
|
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; fi` /lib/crtn.o
|
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
|
||||||
|
Reference in New Issue
Block a user