patches/gcc/4.4.6/220-libiberty-pic.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 17 18:01:28 2011 +0200 (2011-07-17)
changeset 2895 86ea5204e9ce
parent 2149 98b7806295cc
permissions -rw-r--r--
libc/newlib: build newlib in the proper step

Currently, newlib is built in the start_file step, which is wrong, but was
needed when the baremetal integration was... well, 'unfinished'.

Now that we build the baremetal compiler from the final cc step, and a
proper core gcc in pass-1 and pass-2, we can move the newlib build to the
step do_libc, where it belongs.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@2149
     1
diff -durN gcc-4.4.5.orig/libiberty/Makefile.in gcc-4.4.5/libiberty/Makefile.in
yann@2149
     2
--- gcc-4.4.5.orig/libiberty/Makefile.in	2008-10-22 15:30:19.000000000 +0200
yann@2149
     3
+++ gcc-4.4.5/libiberty/Makefile.in	2010-10-09 23:02:28.000000000 +0200
yann@2149
     4
@@ -227,6 +227,7 @@
yann@2149
     5
 	  $(AR) $(AR_FLAGS) $(TARGETLIB) \
yann@2149
     6
 	    $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \
yann@2149
     7
 	  $(RANLIB) $(TARGETLIB); \
yann@2149
     8
+	  cp $(TARGETLIB) ../ ; \
yann@2149
     9
 	  cd ..; \
yann@2149
    10
 	else true; fi
yann@2149
    11