diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-07-15 14:57:35 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 1999-07-15 14:57:35 +0000 |
commit | 88659ef5b692fe64c9caabffea3cb41f3bd844f8 (patch) | |
tree | c1064bc6d08ad5f32482b5f3ae51aceb1f70136c | |
parent | ac352105e17fc3336019c5172fc43eeec25c707b (diff) | |
download | fsf-binutils-gdb-88659ef5b692fe64c9caabffea3cb41f3bd844f8.zip fsf-binutils-gdb-88659ef5b692fe64c9caabffea3cb41f3bd844f8.tar.gz fsf-binutils-gdb-88659ef5b692fe64c9caabffea3cb41f3bd844f8.tar.bz2 |
* configure.host: Set up HOSTING_CRT0 and HOSTING_LIBS for IRIX6.
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/configure.host | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index aebb4de..b6a9629 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +Thu Jul 15 15:55:15 1999 Mark P. Mitchell <mark@codesourcery.com> + + * configure.host: Set up HOSTING_CRT0 and HOSTING_LIBS for IRIX6. + 1999-07-15 Ian Lance Taylor <ian@zembu.com> * configure.in: Bump version number to 2.9.5. diff --git a/ld/configure.host b/ld/configure.host index 88eb311..701d46c 100644 --- a/ld/configure.host +++ b/ld/configure.host @@ -109,11 +109,16 @@ mips*-sgi-irix4*) HOSTING_LIBS='`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else gcc -print-libgcc-file-name; fi` -lc /usr/lib/crtn.o' ;; -mips*-sgi-irix[56]*) +mips*-sgi-irix5*) HOSTING_CRT0=/usr/lib/crt1.o HOSTING_LIBS='`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else gcc -print-libgcc-file-name; fi` -lc /usr/lib/crtn.o' ;; +mips*-sgi-irix6*) + HOSTING_CRT0='/usr/lib32/crt1.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o ; else gcc -print-file-name=crtbegin.o; fi`' + HOSTING_LIBS='`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else gcc -print-libgcc-file-name; fi` -L/usr/lib32 -lc `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o ; else gcc -print-file-name=crtend.o; fi` /usr/lib32/crtn.o -init __do_global_ctors -fini __do_global_dtors' + ;; + m68*-*-linux*aout*) HOSTING_CRT0=/usr/lib/crt0.o ;; |