diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-02-12 20:39:45 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-02-12 20:39:45 -0500 |
commit | 072a08d9c7efc8b8f2bea85d3cde5a24d3192d2d (patch) | |
tree | 40cd74dbb882e2ca4ed82db5506873321ffea834 /gcc | |
parent | d76f2677f954d5cf9861a083d0bfe3cc49c0ac4c (diff) | |
download | gcc-072a08d9c7efc8b8f2bea85d3cde5a24d3192d2d.zip gcc-072a08d9c7efc8b8f2bea85d3cde5a24d3192d2d.tar.gz gcc-072a08d9c7efc8b8f2bea85d3cde5a24d3192d2d.tar.bz2 |
(STARTFILE_SPEC): Make gcc find crt0.o, not loader.
(LIB_SPEC): Remove /usr/lib.
From-SVN: r11242
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i860/paragon.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/i860/paragon.h b/gcc/config/i860/paragon.h index 802d4fd..1374852 100644 --- a/gcc/config/i860/paragon.h +++ b/gcc/config/i860/paragon.h @@ -1,5 +1,5 @@ /* Target definitions for GNU compiler for Intel 80860 running OSF/1AD - Copyright (C) 1991 Free Software Foundation, Inc. + Copyright (C) 1991, 1996 Free Software Foundation, Inc. Based upon original work of Ron Guilmette (rfg@netcom.com). Whacked into submission by Andy Pfiffer (andyp@ssd.intel.com). @@ -54,17 +54,17 @@ Boston, MA 02111-1307, USA. */ #define CPP_SPEC "%{mnx:-D__NODE}" /* autoinit.o autolaunches NX applications */ -#define STARTFILE_SPEC "-ycrt0.o%s %{mnx:-yoptions/autoinit.o%s}" +#define STARTFILE_SPEC "crt0.o%s %{mnx:-yoptions/autoinit.o%s}" /* libic.a is the PGI intrinsic library */ /* libpm.o and guard.o are for the performance monitoring modules (ignored) */ /* /usr/lib/noieee contains non-IEEE compliant (but faster) math routines */ #if HAVE_DASH_G -#define LIB_SPEC "%{mnoieee:-L/usr/lib/noieee} -L/usr/lib %{mnx:-lnx -lmach} % +#define LIB_SPEC "%{mnoieee:-L/usr/lib/noieee} %{mnx:-lnx -lmach} % {g*:-lg} -lc -lic" #else /* HAVE_DASH_G */ /* can't use -g for -lg; libg.a doesn't have a symbol table and ld complains */ -#define LIB_SPEC "%{mnoieee:-L/usr/lib/noieee} -L/usr/lib %{mnx:-lnx -lmach} -lc -lic" +#define LIB_SPEC "%{mnoieee:-L/usr/lib/noieee} %{mnx:-lnx -lmach} -lc -lic" #endif /* HAVE_DASH_G */ /* Get rid of definition from svr3.h. */ |