-
Notifications
You must be signed in to change notification settings - Fork 553
/
build_tarballs.jl
50 lines (42 loc) · 1.69 KB
/
build_tarballs.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using BinaryBuilder, Pkg
name = "NOMAD"
version = v"4.3.1"
# Collection of sources required to complete build
sources = [
GitSource("https://github.com/bbopt/nomad.git", "b74f6c5f63c79fe0c10fa8b41411de4fe2b9da38"),
]
# Bash recipe for building across all platforms
script = raw"""
cd "${WORKSPACE}/srcdir/nomad"
mkdir "${WORKSPACE}/path"
export PATH="${WORKSPACE}/path:$PATH}"
export WADF=${WORKSPACE}/srcdir/nomad/src/Attribute/WriteAttributeDefinitionFile.cpp
${CXX_FOR_BUILD} ${WADF} -o ${WORKSPACE}/path/WriteAttributeDefinitionFile
mkdir build
cd build
cmake -DBUILD_INTERFACE_C=ON \
-DTEST_OPENMP=OFF \
-DCMAKE_INSTALL_PREFIX=${prefix} \
-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN} \
-DCMAKE_BUILD_TYPE=Release ..
make -j${nproc}
make install
"""
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = expand_cxxstring_abis(supported_platforms())
# The products that we will ensure are always built
products = [
LibraryProduct("libnomadCInterface", :libnomadCInterface),
LibraryProduct("libnomadAlgos", :libnomadAlgos),
LibraryProduct("libnomadEval", :libnomadEval),
LibraryProduct("libnomadUtils", :libnomadUtils),
LibraryProduct("libsgtelib", :libsgtelib),
ExecutableProduct("nomad", :nomad),
]
# Dependencies that must be installed before this package can be built
dependencies = [
Dependency(PackageSpec(name="CompilerSupportLibraries_jll", uuid="e66e0078-7015-5450-92f7-15fbd957f2ae"))
]
# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; preferred_gcc_version=v"8", julia_compat="v1.6")