svn commit: r496118 - head/devel/cpu_features

Steven Kreuzer skreuzer at FreeBSD.org
Mon Mar 18 01:35:38 UTC 2019


Author: skreuzer
Date: Mon Mar 18 01:35:37 2019
New Revision: 496118
URL: https://svnweb.freebsd.org/changeset/ports/496118

Log:
  Set NOT_FOR_ARCHS on arm and mips
  
  HWCAPS_ANDROID_MIPS_OR_ARM is being defined based on the assumption that any
  ARM processor must be running Android.
  
  PR:		235994
  Reported by:	John F. Carr <jfc at mit.edu>

Modified:
  head/devel/cpu_features/Makefile

Modified: head/devel/cpu_features/Makefile
==============================================================================
--- head/devel/cpu_features/Makefile	Mon Mar 18 00:40:13 2019	(r496117)
+++ head/devel/cpu_features/Makefile	Mon Mar 18 01:35:37 2019	(r496118)
@@ -11,6 +11,9 @@ COMMENT=	Cross platform C99 library to get cpu feature
 
 LICENSE=	APACHE20
 
+NOT_FOR_ARCHS=		aarch64 armv6 armv7 mips mips64
+NOT_FOR_ARCHS_REASON=	assumes android if on ARM or MIPS
+
 USES=	cmake:insource
 USE_GITHUB=	yes
 GH_ACCOUNT=	google


More information about the svn-ports-head mailing list