t-sol2 (CRTSTUFF_T_CFLAGS): Don't use PIC if cross-compiling, use the native assemble...
authorJason Merrill <merrill@gnu.org>
Tue, 6 Dec 1994 20:09:44 +0000 (20:09 +0000)
committerJason Merrill <merrill@gnu.org>
Tue, 6 Dec 1994 20:09:44 +0000 (20:09 +0000)
Mon Dec  5 19:32:48 1994  Jason Merrill  <jason@phydeaux.cygnus.com>

        * sparc/t-sol2 (CRTSTUFF_T_CFLAGS): Don't use PIC if
        cross-compiling, use the native assembler otherwise.

From-SVN: r8615

gcc/config/sparc/t-sol2

index 1160c879f860d6c89226e4e93a52d39055152ce1..2aed1fd04a21034d07acef5526556252500800f2 100644 (file)
@@ -23,4 +23,8 @@ crtn.o: $(srcdir)/config/sparc/sol2-cn.asm
 # we will be doing that, we just always use -fpic when compiling the
 # routines in crtstuff.c.
 
-CRTSTUFF_T_CFLAGS = -fpic
+# Since the GNU assembler doesn't support PIC yet, we need to force gcc to
+# use the native assembler when building crtstuff.  If we're a
+# cross-compiler, just give up on using PIC.
+
+CRTSTUFF_T_CFLAGS = `if [ -z "$(CROSS)" ]; then echo -fpic -B/usr/ccs/bin/; fi`