svn commit: r351027 - head/share/mk

Andrew Turner andrew at FreeBSD.org
Wed Aug 14 14:31:18 UTC 2019


Author: andrew
Date: Wed Aug 14 14:31:17 2019
New Revision: 351027
URL: https://svnweb.freebsd.org/changeset/base/351027

Log:
  Enable BSD_CRTBEGIN on powerpc
  
  In r342974 jhibbits added support to build crtsavres.o. This was the
  blocker for BSD_CRTBEGIN to be enabled there. As such enable this
  option again.
  
  Reviewed by:	jhibbits
  Sponsored by:	DARPA, AFRL

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

Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk	Wed Aug 14 13:15:38 2019	(r351026)
+++ head/share/mk/src.opts.mk	Wed Aug 14 14:31:17 2019	(r351027)
@@ -394,8 +394,8 @@ BROKEN_OPTIONS+=HYPERV
 BROKEN_OPTIONS+=NVME
 .endif
 
-# PowerPC and Sparc64 need extra crt*.o files
-.if ${__T:Mpowerpc*} || ${__T:Msparc64}
+# Sparc64 need extra crt*.o files
+.if ${__T:Msparc64}
 BROKEN_OPTIONS+=BSD_CRTBEGIN
 .endif
 


More information about the svn-src-head mailing list