Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions G/GLPK/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using BinaryBuilder, Pkg

name = "GLPK"
version = v"5.0.1" # <-- This is a lie, we're bumping from 5.0 to 5.0.1 to create a Julia v1.6+ release with experimental platforms
version = v"5.0.2" # <-- This is a lie, we're bumping from 5.0 to 5.0.2 to create a Julia v1.6+ release with experimental platforms

# Collection of sources required to build GLPK
sources = [
Expand All @@ -18,6 +18,7 @@ else
export CPPFLAGS="-I${prefix}/include"
fi
autoreconf -vi
update_configure_scripts
./configure --prefix=${prefix} --host=${target} --build=${MACHTYPE} --with-gmp
make -j${nproc}
make install
Expand All @@ -33,13 +34,12 @@ products = [

# Dependencies that must be installed before this package can be built
dependencies = [
# We use GMP_jll v6.2.0 because we're requiring Julia v1.6+
Dependency("GMP_jll", v"6.2.0"),
Dependency("GMP_jll", v"6.2.1"),
]

# Build the tarballs, and possibly a `build.jl` as well.
# Use the same preferred_gcc_version as GMP.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;
preferred_gcc_version=v"6", julia_compat="1.6")

# Build trigger: 1
# Build trigger: 2