diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-09-08 20:34:05 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-09-08 20:34:05 +0000 |
commit | 673f5b9f2ca8fd13229d1145ac4c83ac3357cb2d (patch) | |
tree | 9a59bd5a1da385f5e19bd3225183a408f2ebd07b /ld/configure.host | |
parent | 2858b1f25e008ebb4fc04ef3142932b487878528 (diff) | |
download | gdb-673f5b9f2ca8fd13229d1145ac4c83ac3357cb2d.zip gdb-673f5b9f2ca8fd13229d1145ac4c83ac3357cb2d.tar.gz gdb-673f5b9f2ca8fd13229d1145ac4c83ac3357cb2d.tar.bz2 |
* configure.host (i[345]86-sequent-ptx* | i[345]86-sequent-sysv*)
New case.
* configure.tgt (i[345]86-*-ptx*): New case.
Diffstat (limited to 'ld/configure.host')
-rw-r--r-- | ld/configure.host | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ld/configure.host b/ld/configure.host index e16209d..5c967cf 100644 --- a/ld/configure.host +++ b/ld/configure.host @@ -40,6 +40,11 @@ i[345]86-*-sysv4*) NATIVE_LIB_DIRS=/usr/ccs/lib ;; +i[345]86-sequent-ptx* | i[345]86-sequent-sysv*) + HOSTING_CRT0='/lib/crt0.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`' + ;; + i[345]86-*-sysv*) 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' |