Date: Thu, 9 May 2002 13:42:20 +1000 (EST) From: Bruce Evans <bde@zeta.org.au> To: "David E. O'Brien" <obrien@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, <cvs-all@FreeBSD.org> Subject: Re: cvs commit: src Makefile.inc1 Message-ID: <20020509133457.X3451-100000@gamplex.bde.org> In-Reply-To: <200205082035.g48KZEF74285@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 8 May 2002, David E. O'Brien wrote: > obrien 2002/05/08 13:35:13 PDT > > Modified files: > . Makefile.inc1 > Log: > Build our native CSU bits before the compiler-specific ones. > This helps in the compiler build. > > Revision Changes Path > 1.268 +4 -4 src/Makefile.inc1 Please document dependencies in the Makefile if making them actual dependencies is too hard. I can't see where the gcc csu bits link to the native ones. Incomplete patches: %%% Index: Makefile.inc1 =================================================================== RCS file: /home/ncvs/src/Makefile.inc1,v retrieving revision 1.268 diff -u -2 -r1.268 Makefile.inc1 --- Makefile.inc1 8 May 2002 20:35:12 -0000 1.268 +++ Makefile.inc1 9 May 2002 01:08:36 -0000 @@ -759,7 +910,9 @@ # These dependencies are not automatically generated: # -# lib/csu and gnu/lib/csu, gnu/lib/libgcc must be built before all +# gnu/lib/csu, gnu/lib/libgcc and lib/csu must be built before all # shared libraries for ELF. +# lib/csu must be built before gnu/lib/csu and gnu/lib/libgcc for some +# unapparent reason (really both of them? XXX). # .if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-${OBJFORMAT}) _startup_libs= lib/csu/${MACHINE_ARCH}-${OBJFORMAT} %%% Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020509133457.X3451-100000>