svn commit: r330890 - stable/11/share/mk

Ed Maste emaste at FreeBSD.org
Wed Mar 14 01:38:48 UTC 2018


Author: emaste
Date: Wed Mar 14 01:38:47 2018
New Revision: 330890
URL: https://svnweb.freebsd.org/changeset/base/330890

Log:
  MFC r330613: Disable LLD_BOOTSTRAP under WITHOUT_CROSS_COMPILER
  
  LLD is a cross toolchain component. It shouldn't be built when
  requesting a build without building a cross compiler.
  
  (CROSS_COMPILER is somewhat unfortunately named; in any case, lld
  should be treated as GNU binutils here.)
  
  Submitted by:	Dan McGregor <dan.mcgregor at usask.ca>

Modified:
  stable/11/share/mk/src.opts.mk
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/share/mk/src.opts.mk
==============================================================================
--- stable/11/share/mk/src.opts.mk	Wed Mar 14 00:30:49 2018	(r330889)
+++ stable/11/share/mk/src.opts.mk	Wed Mar 14 01:38:47 2018	(r330890)
@@ -397,6 +397,7 @@ MK_BINUTILS_BOOTSTRAP:= no
 MK_CLANG_BOOTSTRAP:= no
 MK_ELFTOOLCHAIN_BOOTSTRAP:= no
 MK_GCC_BOOTSTRAP:= no
+MK_LLD_BOOTSTRAP:= no
 .endif
 
 .if ${MK_META_MODE} == "yes"


More information about the svn-src-all mailing list