From 5948e25e4da42f9f77a6c00a065fd1dbc1501af9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20S=C3=A1nchez=20Ram=C3=ADrez?= <15837247+mofeing@users.noreply.github.com> Date: Sun, 11 Feb 2024 16:49:39 +0100 Subject: [PATCH] Support Julia >1.7 for binding generator (#60) --- bindings/make.jl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bindings/make.jl b/bindings/make.jl index 5a2fe2cb..b4a3454d 100644 --- a/bindings/make.jl +++ b/bindings/make.jl @@ -1,7 +1,3 @@ -if VERSION >= v"1.8" || VERSION < v"1.7" - error("This script only supports 1.7") -end - using Pkg import BinaryBuilderBase: PkgSpec, Prefix, temp_prefix, setup_dependencies, cleanup_dependencies, destdir using Clang.Generators @@ -94,7 +90,7 @@ end function rewrite!(dag::ExprDAG) end -julia_llvm = Dict([v"1.9" => v"14.0.5", v"1.10" => v"15.0.7", v"1.11" => v"16.0.6"]) +julia_llvm = Dict([v"1.9" => v"14.0.5+3", v"1.10" => v"15.0.7+10", v"1.11" => v"16.0.6+2"]) options = load_options(joinpath(@__DIR__, "wrap.toml")) @add_def off_t