Skip to content
51 changes: 51 additions & 0 deletions S/SLATE/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
using BinaryBuilder

name = "SLATE"
version = v"2022.05.00"

# Collection of sources required to build PETSc. Avoid using the git repository, it will
# require building SOWING which fails in all non-linux platforms.
sources = [
GitSource("https://bitbucket.org/icl/slate.git", "5fb57877effa06d2ef090402a39341ebeb44f180")
]

# Bash recipe for building across all platforms

# Needs to add -Dcapi eventually once it's added to the cmake build system. Note yet available under CMAKAE toolchain.
script = raw"""
cd slate
git submodule update --init
mkdir build && cd build
cmake \
-DCMAKE_INSTALL_PREFIX=${prefix} \
-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN} \
-DCMAKE_BUILD_TYPE="Release" \
-Dblas=openblas \
-Dbuild_tests=no \
-DMPI_RUN_RESULT_CXX_libver_mpi_normal="0" \
-DMPI_RUN_RESULT_CXX_libver_mpi_normal__TRYRUN_OUTPUT="" \
-Drun_result="0" \
-Drun_result__TRYRUN_OUTPUT="ok" \
-Dc_api=yes \
..
make -j${nproc}
make install
"""

# We attempt to build for all defined platforms
platforms = expand_gfortran_versions(expand_cxxstring_abis(supported_platforms(; exclude=!Sys.islinux)))
platforms = filter(p -> libgfortran_version(p) ≠ v"3", platforms)
Comment thread
rayegun marked this conversation as resolved.
products = [
LibraryProduct("libslate", :libslate),
LibraryProduct("libslate_lapack_api", :libslate_lapack_api)
# LibraryProduct("libslate_scalapack_api, :libslate_scalapack_api) ** Not yet available under CMAKE toolchain.
]

dependencies = [
Dependency("CompilerSupportLibraries_jll"),
Dependency("OpenBLAS32_jll"),
Dependency("MPICH_jll")
]

# Build the tarballs.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6", preferred_gcc_version=v"7")