svn commit: r356334 - head

Kyle Evans kevans at FreeBSD.org
Fri Jan 3 21:40:33 UTC 2020


Author: kevans
Date: Fri Jan  3 21:40:32 2020
New Revision: 356334
URL: https://svnweb.freebsd.org/changeset/base/356334

Log:
  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.

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Fri Jan  3 20:29:54 2020	(r356333)
+++ head/Makefile.inc1	Fri Jan  3 21:40:32 2020	(r356334)
@@ -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"


More information about the svn-src-head mailing list