svn commit: r330613 - head/share/mk

Ed Maste emaste at FreeBSD.org
Wed Mar 7 17:33:42 UTC 2018


Author: emaste
Date: Wed Mar  7 17:33:41 2018
New Revision: 330613
URL: https://svnweb.freebsd.org/changeset/base/330613

Log:
  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>
  MFC after:	1 week

Modified:
  head/share/mk/src.opts.mk

Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk	Wed Mar  7 17:18:46 2018	(r330612)
+++ head/share/mk/src.opts.mk	Wed Mar  7 17:33:41 2018	(r330613)
@@ -437,6 +437,7 @@ MK_BINUTILS_BOOTSTRAP:= no
 MK_CLANG_BOOTSTRAP:= no
 MK_ELFTOOLCHAIN_BOOTSTRAP:= no
 MK_GCC_BOOTSTRAP:= no
+MK_LLD_BOOTSTRAP:= no
 .endif
 
 .if ${MK_TOOLCHAIN} == "no"


More information about the svn-src-head mailing list