170 lines
5.7 KiB
Bash
170 lines
5.7 KiB
Bash
# Maintainer: Alexey Pavlov <alexpux@gmail.com>
|
|
# Contributor: Jürgen Pfeifer <juergen@familiepfeifer.de>
|
|
|
|
_realname=OpenBLAS
|
|
pkgbase=mingw-w64-openblas
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-openblas"
|
|
"${MINGW_PACKAGE_PREFIX}-openblas64")
|
|
pkgver=0.3.29
|
|
pkgrel=1
|
|
pkgdesc="An optimized BLAS library based on GotoBLAS2 1.13 BSD, providing optimized blas, lapack, and cblas (mingw-w64)"
|
|
arch=('any')
|
|
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
|
|
url="https://www.openblas.net/"
|
|
msys2_repository_url="https://github.com/OpenMathLib/OpenBLAS"
|
|
msys2_references=(
|
|
'archlinux: openblas'
|
|
"cpe: cpe:/a:openblas_project:openblas"
|
|
)
|
|
license=('spdx:BSD-3-Clause')
|
|
depends=("${MINGW_PACKAGE_PREFIX}-gcc-libs"
|
|
"${MINGW_PACKAGE_PREFIX}-libwinpthread"
|
|
$([[ ${MINGW_PACKAGE_PREFIX} == *-clang-* ]] || echo "${MINGW_PACKAGE_PREFIX}-gcc-libgfortran")
|
|
"${MINGW_PACKAGE_PREFIX}-omp")
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-cc"
|
|
"${MINGW_PACKAGE_PREFIX}-cmake"
|
|
"${MINGW_PACKAGE_PREFIX}-ninja"
|
|
"${MINGW_PACKAGE_PREFIX}-fc"
|
|
"dos2unix")
|
|
options=('!buildflags')
|
|
source=(https://github.com/OpenMathLib/OpenBLAS/releases/download/v${pkgver}/${_realname}-${pkgver}.tar.gz
|
|
001-fix-build-with-flang-and-openmp.patch
|
|
002-lgfortran-requires-lquadmath.patch
|
|
004-aarch64-detection.patch
|
|
005-fix-pkgconfig-files.patch)
|
|
sha256sums=('38240eee1b29e2bde47ebb5d61160207dc68668a54cac62c076bb5032013b1eb'
|
|
'f8a78a18b9bfc2c58c2a15e86bdf0edb0b1018a482c7fd9ca53de1d22eff0a3d'
|
|
'c147ec053bdf0387d499372472365aa829db0d8200b6828b0ebce5209e8603fd'
|
|
'70ce007ff4f6c2a127f9835ce9cd85081707cf3bcccddcfaa06817b06f69c941'
|
|
'a5c94f3c089a85c691ce67f0ad2e090d7d4ef951beee040248a5eaf0ee12b33d')
|
|
|
|
# Helper macros to help make tasks easier #
|
|
apply_patch_with_msg() {
|
|
for _patch in "$@"
|
|
do
|
|
msg2 "Applying ${_patch}"
|
|
patch -Np1 -i "${srcdir}"/${_patch}
|
|
done
|
|
}
|
|
|
|
prepare() {
|
|
cd "${srcdir}"/${_realname}-${pkgver}
|
|
|
|
apply_patch_with_msg \
|
|
001-fix-build-with-flang-and-openmp.patch \
|
|
002-lgfortran-requires-lquadmath.patch \
|
|
004-aarch64-detection.patch \
|
|
005-fix-pkgconfig-files.patch
|
|
}
|
|
|
|
_build_openblas() {
|
|
_idx_opt=$1
|
|
|
|
declare -a _extra_config
|
|
if check_option "debug" "n"; then
|
|
_extra_config+=("-DCMAKE_BUILD_TYPE=Release")
|
|
else
|
|
_extra_config+=("-DCMAKE_BUILD_TYPE=Debug")
|
|
fi
|
|
|
|
if [[ ${CARCH} == aarch64 ]]; then
|
|
# Clang wasn't able to compile all the kernels inside the arm64 folder,
|
|
# Enable only the cores known to build on Windows on ARM
|
|
_extra_config+=("-DTARGET=CORTEXA53" "-DDYNAMIC_ARCH=ON" "-DDYNAMIC_LIST='CORTEXA53;CORTEXA57;CORTEXA72;CORTEXA73;CORTEXA76;CORTEXX1;THUNDERX;TSV110;EMAG8180'")
|
|
else
|
|
_extra_config+=("-DTARGET=CORE2" "-DDYNAMIC_ARCH=ON")
|
|
fi
|
|
|
|
MSYS2_ARG_CONV_EXCL="-DCMAKE_INSTALL_PREFIX=" \
|
|
${MINGW_PREFIX}/bin/cmake \
|
|
-G"Ninja" \
|
|
-DCMAKE_INSTALL_PREFIX=${MINGW_PREFIX} \
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
-DBUILD_STATIC_LIBS=ON \
|
|
-DBUILD_TESTING=OFF \
|
|
-DUSE_THREAD=ON \
|
|
-DNUM_THREADS=64 \
|
|
-DUSE_OPENMP=ON \
|
|
"${_extra_config[@]}" \
|
|
${_idx_opt} \
|
|
../${_realname}-${pkgver}
|
|
|
|
${MINGW_PREFIX}/bin/cmake --build .
|
|
}
|
|
|
|
build() {
|
|
mkdir -p "${srcdir}"/build-${MSYSTEM}-32 && cd "${srcdir}"/build-${MSYSTEM}-32
|
|
|
|
msg2 "Build OpenBLAS with 32-bit indexing"
|
|
_build_openblas ""
|
|
|
|
mkdir -p "${srcdir}"/build-${MSYSTEM}-64 && cd "${srcdir}"/build-${MSYSTEM}-64
|
|
|
|
msg2 "Build OpenBLAS with 64-bit indexing"
|
|
_build_openblas "-DBINARY=64 -DINTERFACE64=1"
|
|
}
|
|
|
|
check() {
|
|
cd "${srcdir}"/build-${MSYSTEM}-32
|
|
${MINGW_PREFIX}/bin/cmake -DBUILD_TESTING=ON ../${_realname}-${pkgver}
|
|
${MINGW_PREFIX}/bin/cmake --build .
|
|
${MINGW_PREFIX}/bin/ctest
|
|
|
|
cd "${srcdir}/build-${MSYSTEM}-64"
|
|
${MINGW_PREFIX}/bin/cmake -DBUILD_TESTING=ON ../${_realname}-${pkgver}
|
|
${MINGW_PREFIX}/bin/cmake --build .
|
|
${MINGW_PREFIX}/bin/ctest
|
|
}
|
|
|
|
package_openblas() {
|
|
pkgdesc="An optimized BLAS library based on GotoBLAS2 1.13 BSD, providing optimized blas, lapack, and cblas (mingw-w64)"
|
|
|
|
cd "${srcdir}"/build-${MSYSTEM}-32
|
|
|
|
DESTDIR="${pkgdir}" ${MINGW_PREFIX}/bin/cmake --install .
|
|
|
|
local PREFIX_WIN=$(cygpath -wm ${MINGW_PREFIX})
|
|
for _f in "${pkgdir}${MINGW_PREFIX}"/lib/cmake/OpenBLAS/*.cmake; do
|
|
sed -e "s|${PREFIX_WIN}|\$\{_IMPORT_PREFIX\}|g" -i ${_f}
|
|
done
|
|
|
|
# Install License
|
|
install -Dm0644 "${srcdir}"/${_realname}-${pkgver}/LICENSE \
|
|
"${pkgdir}"${MINGW_PREFIX}/share/licenses/${_realname}/LICENSE
|
|
install -Dm0644 "${srcdir}"/${_realname}-${pkgver}/lapack-netlib/LICENSE \
|
|
"${pkgdir}"${MINGW_PREFIX}/share/licenses/${_realname}/LICENSE-lapack
|
|
}
|
|
|
|
package_openblas64() {
|
|
pkgdesc="An optimized BLAS library based on GotoBLAS2 1.13 BSD, providing optimized blas, lapack, and cblas with 64-bit indexing (mingw-w64)"
|
|
provides=()
|
|
conflicts=()
|
|
replaces=()
|
|
|
|
cd "${srcdir}"/build-${MSYSTEM}-64
|
|
|
|
DESTDIR="${pkgdir}" ${MINGW_PREFIX}/bin/cmake --install .
|
|
|
|
local PREFIX_WIN=$(cygpath -wm ${MINGW_PREFIX})
|
|
for _f in "${pkgdir}${MINGW_PREFIX}"/lib/cmake/OpenBLAS64/*.cmake; do
|
|
sed -e "s|${PREFIX_WIN}|\$\{_IMPORT_PREFIX\}|g" -i ${_f}
|
|
done
|
|
|
|
# Install License
|
|
install -Dm0644 "${srcdir}"/${_realname}-${pkgver}/LICENSE \
|
|
"${pkgdir}"${MINGW_PREFIX}/share/licenses/${_realname}64/LICENSE
|
|
install -Dm0644 "${srcdir}"/${_realname}-${pkgver}/lapack-netlib/LICENSE \
|
|
"${pkgdir}"${MINGW_PREFIX}/share/licenses/${_realname}64/LICENSE-lapack
|
|
}
|
|
|
|
# template start; name=mingw-w64-splitpkg-wrappers; version=1.0;
|
|
# vim: set ft=bash :
|
|
|
|
# generate wrappers
|
|
for _name in "${pkgname[@]}"; do
|
|
_short="package_${_name#${MINGW_PACKAGE_PREFIX}-}"
|
|
_func="$(declare -f "${_short}")"
|
|
eval "${_func/#${_short}/package_${_name}}"
|
|
done
|
|
# template end;
|