diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-09-27 22:25:04 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-09-27 22:25:04 +0000 |
commit | 262c876349e7b12a4c8fbd6d283cd190e7970a24 (patch) | |
tree | 251433f91a61231e5e7eaf3517de7cd2a13d03e1 /ld/config/solaris2.mh | |
parent | 5c680d3f29a0f7073b32e00bc5d4fda17c5e89f0 (diff) | |
download | gdb-262c876349e7b12a4c8fbd6d283cd190e7970a24.zip gdb-262c876349e7b12a4c8fbd6d283cd190e7970a24.tar.gz gdb-262c876349e7b12a4c8fbd6d283cd190e7970a24.tar.bz2 |
* Makefile.in (CC): Define.
(CXX): Move definition, change from g++ to gcc.
(EXPECT, RUNTEST): Copy definitions from top level Makefile.in.
(RUNTEST_CC, RUNTEST_CFLAGS): Remove.
(RUNTEST_CXX, RUNTEST_CXXFLAGS): Remove.
(CC_FOR_TARGET, CXX_FOR_TARGET): Copy from top level Makefile.in.
(.cc.o): Comment out.
(testdir): Remove.
(site.exp): Don't create testdir or set tmpdir.
(check): Run checks even if not running native. Use CC_FOR_TARGET
instead of RUNTEST_CC, and likewise for CXX.
(cdtest targets): Comment out.
* config/solaris2.mh (HOSTING_LIBS): Only mention crtend.o once.
* cdtest-bar.cc, cdtest-foo.cc, cdtest-foo.h: Remove.
* cdtest-main.cc, cdtest.exp: Remove.
Diffstat (limited to 'ld/config/solaris2.mh')
-rw-r--r-- | ld/config/solaris2.mh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/config/solaris2.mh b/ld/config/solaris2.mh index dba3413..042c2ed 100644 --- a/ld/config/solaris2.mh +++ b/ld/config/solaris2.mh @@ -1,4 +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` +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` `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 |