This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Bootstrap failing on sparc-sun-solaris2.6
- To: gcc at gcc dot gnu dot org
- Subject: Re: Bootstrap failing on sparc-sun-solaris2.6
- From: Branko Čibej <branko dot cibej at hermes dot si>
- Date: Fri, 19 May 2000 09:39:56 +0200
- CC: gcc-patches at gcc dot gnu dot org
- Organization: HERMES SoftLab
- References: <3924EB41.891CA245@hermes.si>
- Reply-To: gcc at gcc dot gnu dot org
Bah, stupid of me. This change to libiberty/Makefile.in causes
the problem:
2000-05-15 David Edelsohn <edelsohn@gnu.org>
* Makefile.in: Change "pic" to depend on $(PICFLAG), not
on $(enable_shared).
Would changing config/mh-sparcpic (and possibly config/mt-sparcpic)
to use single instead of double quotes be O.K.?
--
Branko Čibej <branko.cibej@hermes.si>
HERMES SoftLab, Litijska 51, 1000 Ljubljana, Slovenia
voice: (+386 1) 586 53 49 fax: (+386 1) 586 52 70
2000-05-19 Branko Cibej <branko.cibej@hermes.si>
* mh-sparcpic: Use single instead of double quotes.
* mt-sparcpic: Likewise.
Index: config/mh-sparcpic
===================================================================
RCS file: /cvs/gcc/egcs/config/mh-sparcpic,v
retrieving revision 1.2
diff -u -p -r1.2 mh-sparcpic
--- mh-sparcpic 1998/02/06 00:33:03 1.2
+++ mh-sparcpic 2000/05/19 07:35:57
@@ -1 +1 @@
-PICFLAG=`case "${LIBCFLAGS} ${LIBCXXFLAGS}" in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`
+PICFLAG=`case '${LIBCFLAGS} ${LIBCXXFLAGS}' in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`
Index: config/mt-sparcpic
===================================================================
RCS file: /cvs/gcc/egcs/config/mt-sparcpic,v
retrieving revision 1.2
diff -u -p -r1.2 mt-sparcpic
--- mt-sparcpic 1998/02/06 00:33:04 1.2
+++ mt-sparcpic 2000/05/19 07:35:57
@@ -1 +1 @@
-PICFLAG_FOR_TARGET=`case "${LIBCFLAGS} ${LIBCXXFLAGS}" in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`
+PICFLAG_FOR_TARGET=`case '${LIBCFLAGS} ${LIBCXXFLAGS}' in *-fpic* ) echo -fpic ;; * ) echo -fPIC ;; esac`