svn commit: r568969 - head/math/openblas

Gleb Popov arrowd at FreeBSD.org
Mon Mar 22 16:00:59 UTC 2021


Author: arrowd
Date: Mon Mar 22 16:00:58 2021
New Revision: 568969
URL: https://svnweb.freebsd.org/changeset/ports/568969

Log:
  math/openblas: Allow building in poudriere with DYNAMIC_ARCH=off.
  
  The removed check was simply a safety belt. Improve option's description to underline that turning it off semantically equals to building with march=native.
  
  PR:		245926
  Approved by:	Eijiro Shibusawa <phd_kimberlite at yahoo.co.jp> (maintainer)

Modified:
  head/math/openblas/Makefile

Modified: head/math/openblas/Makefile
==============================================================================
--- head/math/openblas/Makefile	Mon Mar 22 15:14:04 2021	(r568968)
+++ head/math/openblas/Makefile	Mon Mar 22 16:00:58 2021	(r568969)
@@ -54,7 +54,7 @@ OPTIONS_DEFAULT_amd64=	DYNAMIC_ARCH
 OPTIONS_DEFAULT_powerpc64le=	DYNAMIC_ARCH
 .endif
 
-DYNAMIC_ARCH_DESC=	Support multiple CPU types on i386 and amd64
+DYNAMIC_ARCH_DESC=	Optimize for multiple CPU types, otherwise for this CPU
 INTERFACE64_DESC=	Use 8 byte integers on 64-bit architectures
 OPENMP_DESC=		Use OpenMP for threading
 AVX_DESC=		Support Advanced Vector Extensions (AVX)
@@ -85,10 +85,6 @@ USE_GCC=		yes
 .endif
 
 MAXTHREADS?=	64
-
-.if ! ${PORT_OPTIONS:MDYNAMIC_ARCH} && ( ${ARCH} == "amd64" || ${ARCH} == "i386" || ${ARCH} == "powerpc64le")
-MANUAL_PACKAGE_BUILD=	Optimizes for the build machine.
-.endif
 
 .include <bsd.port.pre.mk>
 


More information about the svn-ports-head mailing list