Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Updated the build process to use OpenBLAS on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Feb 16, 2024
1 parent 20cb971 commit fcc50b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions buildscripts/build_shtools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ case $FC in
;;
*)
echo "Everything else"
make F95="${FC}" CXX="${CXX}" F95FLAGS="-fPIC -m64 -O3 -std=gnu -ffast-math" fortran
make F95="${FC}" CXX="${CXX}" F95FLAGS="-fPIC -m64 -O3 -std=gnu -ffast-math" fortran-mp
make F95="${FC}" CXX="${CXX}" F95FLAGS="-fPIC -O3 -std=gnu -ffast-math" fortran
make F95="${FC}" CXX="${CXX}" F95FLAGS="-fPIC -O3 -std=gnu -ffast-math" fortran-mp
;;
esac

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ CMAKE_INSTALL_LIBDIR="lib"
[tool.cibuildwheel.linux]
skip = "cp312-* pp* -manylinux_i686* *-musllinux*"
before-all = [
"yum install doxygen libxml2-devel libcurl-devel fftw-devel blas-devel lapack-devel -y",
"yum install epel-release -y",
"yum install doxygen libxml2-devel libcurl-devel fftw-devel openblas-devel lapack-devel -y",
"buildscripts/build_dependencies.sh -p /usr/local"
]

Expand Down

0 comments on commit fcc50b5

Please sign in to comment.