svn commit: r346075 - projects/runtime-coverage-v2/targets/pseudo/bootstrap-tools

Enji Cooper ngie at FreeBSD.org
Wed Apr 10 09:19:28 UTC 2019


Author: ngie
Date: Wed Apr 10 09:19:26 2019
New Revision: 346075
URL: https://svnweb.freebsd.org/changeset/base/346075

Log:
  Add `MK_RETPOLINE=no` and `MK_COVERAGE=no`
  
  This is being done per advice in Makefile.inc1 .

Modified:
  projects/runtime-coverage-v2/targets/pseudo/bootstrap-tools/Makefile

Modified: projects/runtime-coverage-v2/targets/pseudo/bootstrap-tools/Makefile
==============================================================================
--- projects/runtime-coverage-v2/targets/pseudo/bootstrap-tools/Makefile	Wed Apr 10 08:34:17 2019	(r346074)
+++ projects/runtime-coverage-v2/targets/pseudo/bootstrap-tools/Makefile	Wed Apr 10 09:19:26 2019	(r346075)
@@ -32,7 +32,7 @@ OSRELDATE!= sed -n '/define.*__FreeBSD_version/{s,^[^0
 OSRELDATE?= 0
 .endif
 
-# need to keep this in sync with src/Makefile.inc1 
+# need to keep this in sync with src/Makefile.inc1
 BSARGS= 	DESTDIR= \
 		OBJTOP='${WORLDTMP}/obj-tools' \
 		OBJROOT='$${OBJTOP}/' \
@@ -44,7 +44,8 @@ BSARGS= 	DESTDIR= \
 		-DNO_PIC MK_PROFILE=no -DNO_SHARED \
 		-DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \
 		MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \
-		MK_LLDB=no MK_TESTS=no \
+		MK_LLDB=no MK_RETPOLINE=no \
+		MK_TESTS=no MK_COVERAGE=no \
 		MK_INCLUDES=yes
 
 # We will handle building the toolchain and cross-compiler.


More information about the svn-src-projects mailing list