Build our native CSU bits before the compiler-specific ones.

This helps in the compiler build.
This commit is contained in:
David E. O'Brien 2002-05-08 20:35:12 +00:00
parent ee13ade8a0
commit 1b860b61d4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96230

View File

@ -758,15 +758,15 @@ libraries:
# These dependencies are not automatically generated:
#
# gnu/lib/csu, gnu/lib/libgcc and lib/csu must be built before all
# lib/csu and gnu/lib/csu, gnu/lib/libgcc must be built before all
# shared libraries for ELF.
#
_startup_libs= gnu/lib/csu gnu/lib/libgcc
.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-${OBJFORMAT})
_startup_libs+= lib/csu/${MACHINE_ARCH}-${OBJFORMAT}
_startup_libs= lib/csu/${MACHINE_ARCH}-${OBJFORMAT}
.else
_startup_libs+= lib/csu/${MACHINE_ARCH}
_startup_libs= lib/csu/${MACHINE_ARCH}
.endif
_startup_libs+= gnu/lib/csu gnu/lib/libgcc
_prebuild_libs=