Date: Mon, 22 Mar 2021 16:00:59 +0000 (UTC) From: Gleb Popov <arrowd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568969 - head/math/openblas Message-ID: <202103221600.12MG0xE7039326@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103221600.12MG0xE7039326>