Makefile.inc1: remove libcompiler_rt from _startup_libs

libcompiler_rt is already present in _prereq_libs, which will get built just
before _startup_libs and in advance of shared libc. Dedupe.
This commit is contained in:
Kyle Evans 2020-01-03 21:40:32 +00:00
parent a1517e1182
commit 36afd1d2cb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=356334

View File

@ -2800,7 +2800,6 @@ _startup_libs= lib/csu
.if ${MK_BSD_CRTBEGIN} == "no"
_startup_libs+= gnu/lib/csu
.endif
_startup_libs+= lib/libcompiler_rt
_startup_libs+= lib/libc
_startup_libs+= lib/libc_nonshared
.if ${MK_LIBCPLUSPLUS} != "no"