Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Feb 2020 18:27:37 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r525231 - head/math/openblas
Message-ID:  <202002041827.014IRbmA016021@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue Feb  4 18:27:37 2020
New Revision: 525231
URL: https://svnweb.freebsd.org/changeset/ports/525231

Log:
  math/openblas: actually add libopenblas library to the package on powerpc64 head
  
  On powerpc64 head, libopenblas_ppc970p-r0.3.7.* weren't added to the package, even though the package itself built succesfully. This problem doesn't exist on 12.
  Lack of libopenblas_ppc970p-r0.3.7.* made many packages fail.
  Add DYNAMIC_ARCH option everywhere since it will cause the post-install target dependent on this option to run and include libopenblas_ppc970p-r0.3.7.* in the package.
  This is only to get the necessary libs in the package, the option only works on ppc64le, which we don't support.
  
  Bump PORTREVISION because of package change.

Modified:
  head/math/openblas/Makefile

Modified: head/math/openblas/Makefile
==============================================================================
--- head/math/openblas/Makefile	Tue Feb  4 18:17:28 2020	(r525230)
+++ head/math/openblas/Makefile	Tue Feb  4 18:27:37 2020	(r525231)
@@ -4,7 +4,7 @@
 PORTNAME=	openblas
 PORTVERSION=	0.3.7
 DISTVERSIONPREFIX=	v
-PORTREVISION=	1
+PORTREVISION=	2
 PORTEPOCH=	1
 CATEGORIES=	math
 MASTER_SITES=	NL/lapack/timing/:lapack_tmg
@@ -39,9 +39,9 @@ TEST_TARGET=	tests
 
 PLIST_SUB+=	PORTVERSION=${PORTVERSION}
 
-OPTIONS_DEFINE=			INTERFACE64 OPENMP
-OPTIONS_DEFINE_i386=		AVX AVX2 DYNAMIC_ARCH
-OPTIONS_DEFINE_amd64=		AVX AVX2 DYNAMIC_ARCH
+OPTIONS_DEFINE=			DYNAMIC_ARCH INTERFACE64 OPENMP
+OPTIONS_DEFINE_i386=		AVX AVX2
+OPTIONS_DEFINE_amd64=		AVX AVX2
 OPTIONS_DEFINE_powerpc64=	POWER6
 OPTIONS_EXCLUDE_powerpc64=	OPENMP
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002041827.014IRbmA016021>