svn commit: r300438 - head/share/mk

Ian Lepore ian at FreeBSD.org
Sun May 22 21:31:21 UTC 2016


Author: ian
Date: Sun May 22 21:31:20 2016
New Revision: 300438
URL: https://svnweb.freebsd.org/changeset/base/300438

Log:
  Restore the translation of armv6hf->arm when generating MACHINE_CPUARCH.
  It turns out we need to leave this in place for a while so that people
  running self-hosting armv6hf systems can do the builds necessary to update
  to armv6 (which is now hardfloat by default).

Modified:
  head/share/mk/sys.mk

Modified: head/share/mk/sys.mk
==============================================================================
--- head/share/mk/sys.mk	Sun May 22 20:44:11 2016	(r300437)
+++ head/share/mk/sys.mk	Sun May 22 21:31:20 2016	(r300438)
@@ -13,7 +13,7 @@ unix		?=	We run FreeBSD, not UNIX.
 # and/or endian.  This is called MACHINE_CPU in NetBSD, but that's used
 # for something different in FreeBSD.
 #
-MACHINE_CPUARCH=${MACHINE_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/:C/powerpc64/powerpc/:C/riscv64/riscv/}
+MACHINE_CPUARCH=${MACHINE_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb|hf)?/arm/:C/powerpc64/powerpc/:C/riscv64/riscv/}
 .endif
 
 


More information about the svn-src-head mailing list