diff options
author | Jean Marie Diaz <ambar@cygnus> | 1994-06-29 21:18:47 +0000 |
---|---|---|
committer | Jean Marie Diaz <ambar@cygnus> | 1994-06-29 21:18:47 +0000 |
commit | 0373062441e6151860971ebd6e70b955f72e0b33 (patch) | |
tree | f025f744aea90b0ed563b768fda4e3960c8a007f /ld | |
parent | 111b24d572118a266bf95ea2b34f9509b038df91 (diff) | |
download | gdb-0373062441e6151860971ebd6e70b955f72e0b33.zip gdb-0373062441e6151860971ebd6e70b955f72e0b33.tar.gz gdb-0373062441e6151860971ebd6e70b955f72e0b33.tar.bz2 |
* config/solaris2.mh (NATIVE_LIB_DIRS): Define as /usr/ccs/lib.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 2 | ||||
-rw-r--r-- | ld/config/solaris2.mh | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 7c22895..0dba65e 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,7 @@ Wed Jun 29 16:50:00 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) + * config/solaris2.mh (NATIVE_LIB_DIRS): Define as /usr/ccs/lib. + * lexsup.c (parse_args): Accept -Bstatic and -Bdynamic. Do not accept plain -B. * ld.texinfo: -Bstatic is not ignored. diff --git a/ld/config/solaris2.mh b/ld/config/solaris2.mh index 831019b..dba3413 100644 --- a/ld/config/solaris2.mh +++ b/ld/config/solaris2.mh @@ -1,3 +1,4 @@ # Hosting files for Solaris HOSTING_CRT0=`if [ -f ../gcc/crt1.o ]; then echo ../gcc/crt1.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crt1.o/'; fi` `if [ -f ../gcc/crti.o ]; then echo ../gcc/crti.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crti.o/'; fi` /usr/ccs/lib/values-Xa.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` `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crtend.o/'; fi` `if [ -f ../gcc/crtn.o ]; then echo ../gcc/crtn.o; else gcc -print-libgcc-file-name | sed -e 's/libgcc.a/crtn.o/'; fi` +NATIVE_LIB_DIRS=/usr/ccs/lib |