Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update with v12.0.0 libraries #27

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions src/wrappers/aarch64-apple-darwin.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export gurobi_cl, grbgetkey, libgurobi

JLLWrappers.@generate_wrapper_header("Gurobi")

JLLWrappers.@declare_library_product(libgurobi, "@rpath/libgurobi110.dylib")
JLLWrappers.@declare_library_product(libgurobi, "@rpath/libgurobi120.dylib")

JLLWrappers.@declare_executable_product(gurobi_cl)

Expand All @@ -17,7 +17,7 @@ function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
libgurobi,
"lib/libgurobi110.dylib",
"lib/libgurobi120.dylib",
RTLD_LAZY | RTLD_DEEPBIND,
)
JLLWrappers.@init_executable_product(gurobi_cl, "bin/gurobi_cl")
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/aarch64-linux-gnu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export gurobi_cl, grbgetkey, libgurobi

JLLWrappers.@generate_wrapper_header("Gurobi")

JLLWrappers.@declare_library_product(libgurobi, "libgurobi110.so")
JLLWrappers.@declare_library_product(libgurobi, "libgurobi120.so")

JLLWrappers.@declare_executable_product(gurobi_cl)

Expand All @@ -17,7 +17,7 @@ function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
libgurobi,
"lib/libgurobi110.so",
"lib/libgurobi120.so",
RTLD_LAZY | RTLD_DEEPBIND,
)
JLLWrappers.@init_executable_product(gurobi_cl, "bin/gurobi_cl")
Expand Down
6 changes: 3 additions & 3 deletions src/wrappers/x86_64-apple-darwin.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export gurobi_cl, grbgetkey, libgurobi

JLLWrappers.@generate_wrapper_header("Gurobi")

JLLWrappers.@declare_library_product(libgurobi, "@rpath/libgurobi110.dylib")
JLLWrappers.@declare_library_product(libgurobi, "@rpath/libgurobi120.dylib")

JLLWrappers.@declare_executable_product(gurobi_cl)

Expand All @@ -17,12 +17,12 @@ function __init__()
JLLWrappers.@generate_init_header()
# This is needed to work-around a permission issue on some intel macs.
# See Gurobi.jl#545 for details.
libgurobi_path = joinpath(artifact_dir, "lib", "libgurobi110.dylib")
libgurobi_path = joinpath(artifact_dir, "lib", "libgurobi120.dylib")
run(`codesign --remove-signature $libgurobi_path`)
# Back to the standard header
JLLWrappers.@init_library_product(
libgurobi,
"lib/libgurobi110.dylib",
"lib/libgurobi120.dylib",
RTLD_LAZY | RTLD_DEEPBIND,
)
JLLWrappers.@init_executable_product(gurobi_cl, "bin/gurobi_cl")
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/x86_64-linux-gnu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export gurobi_cl, grbgetkey, libgurobi

JLLWrappers.@generate_wrapper_header("Gurobi")

JLLWrappers.@declare_library_product(libgurobi, "libgurobi110.so")
JLLWrappers.@declare_library_product(libgurobi, "libgurobi120.so")

JLLWrappers.@declare_executable_product(gurobi_cl)

Expand All @@ -17,7 +17,7 @@ function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
libgurobi,
"lib/libgurobi110.so",
"lib/libgurobi120.so",
RTLD_LAZY | RTLD_DEEPBIND,
)
JLLWrappers.@init_executable_product(gurobi_cl, "bin/gurobi_cl")
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/x86_64-w64-mingw32.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export gurobi_cl, grbgetkey, libgurobi

JLLWrappers.@generate_wrapper_header("Gurobi")

JLLWrappers.@declare_library_product(libgurobi, "gurobi110.dll")
JLLWrappers.@declare_library_product(libgurobi, "gurobi120.dll")

JLLWrappers.@declare_executable_product(gurobi_cl)

Expand All @@ -23,7 +23,7 @@ function __init__()
end
JLLWrappers.@init_library_product(
libgurobi,
"gurobi110.dll",
"gurobi120.dll",
RTLD_LAZY | RTLD_DEEPBIND,
)
JLLWrappers.@init_executable_product(gurobi_cl, "gurobi_cl.exe")
Expand Down
Loading