This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: A new parallel buld patch


On May 20, 2000, Alexandre Oliva <aoliva@cygnus.com> wrote:

> On May 18, 2000, "H . J . Lu" <hjl@lucon.org> wrote:
>> * Makefile.in (libgcc.mk): Depend on xgcc$(exeext) for
>> GCC_FOR_TARGET used by MULTILIBS.
>> * mklibgcc.in: Make sure each .o file depends on the
>> directory it will be in.
>> Make the multilib directory depends libgcc.

> Thanks, installed.

I'm checking this in to fix the problem detected by Geoff's regression
checker:

Index: gcc/ChangeLog
from  Alexandre Oliva  <aoliva@cygnus.com>

	* mklibgcc.in: Restore rule to create ${dir}.

Index: gcc/mklibgcc.in
===================================================================
RCS file: /cvs/gcc/egcs/gcc/mklibgcc.in,v
retrieving revision 1.9
diff -u -r1.9 mklibgcc.in
--- gcc/mklibgcc.in	2000/05/20 11:48:03	1.9
+++ gcc/mklibgcc.in	2000/05/20 13:16:28
@@ -310,6 +310,8 @@
   dir=`echo ${ml} | sed -e 's/;.*$//' -e 's/=/$(EQ)/g'`
   if [ $dir != . ]; then
     echo "libgcc/${dir}: libgcc; -mkdir libgcc/${dir}"
+    echo "${dir}:; -mkdir ${dir}"
+    all="$all ${dir} libgcc/${dir}"
   fi
   all="$all ${dir}/libgcc.a"
 done

-- 
Alexandre Oliva    Enjoy Guaranį, see http://www.ic.unicamp.br/~oliva/
Cygnus Solutions, a Red Hat company        aoliva@{redhat, cygnus}.com
Free Software Developer and Evangelist    CS PhD student at IC-Unicamp
oliva@{lsd.ic.unicamp.br, gnu.org}   Write to mailing lists, not to me

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]