svn commit: r335369 - head/share/mk

Ruslan Bukin br at FreeBSD.org
Tue Jun 19 13:28:03 UTC 2018


Author: br
Date: Tue Jun 19 13:28:02 2018
New Revision: 335369
URL: https://svnweb.freebsd.org/changeset/base/335369

Log:
  Don't use TARGET_ARCH in this file, use MACHINE_ARCH instead.
  
  TARGET_ARCH is not defined when building ports/packages.
  
  Sponsored by:	DARPA, AFRL

Modified:
  head/share/mk/bsd.cpu.mk

Modified: head/share/mk/bsd.cpu.mk
==============================================================================
--- head/share/mk/bsd.cpu.mk	Tue Jun 19 12:16:19 2018	(r335368)
+++ head/share/mk/bsd.cpu.mk	Tue Jun 19 13:28:02 2018	(r335369)
@@ -366,7 +366,7 @@ CFLAGS += -mcpu=8540 -Wa,-me500 -mspe=yes -mabi=spe -m
 .endif
 
 .if ${MACHINE_CPUARCH} == "riscv"
-.if ${TARGET_ARCH:Mriscv*sf}
+.if ${MACHINE_ARCH:Mriscv*sf}
 CFLAGS += -march=rv64imac -mabi=lp64
 ACFLAGS += -march=rv64imac -mabi=lp64
 .else


More information about the svn-src-head mailing list