Skip to content

Commit

Permalink
[CSDP] build on experimental platforms (#4031)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Dec 5, 2021
1 parent 79ff1c0 commit 3fa7e16
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions C/Coin-OR/CSDP/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
include("../coin-or-common.jl")

name = "CSDP"
version = v"6.2.0"
version = offset_version(v"6.2.0", v"0.0.1")

# Collection of sources required to build Clp
sources = [
Expand Down Expand Up @@ -45,7 +44,7 @@ ${CC} -fopenmp -fPIC -shared -Wl,${all_load} libsdp.a -Wl,${noall_load} -o ${lib

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms()
platforms = supported_platforms(;experimental=true)

# The products that we will ensure are always built
products = [
Expand All @@ -59,5 +58,15 @@ dependencies = [
]

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

0 comments on commit 3fa7e16

Please sign in to comment.