Skip to content

Commit

Permalink
Generate bindings for Clang 17(Julia 1.12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnimuc committed May 13, 2024
1 parent 1c3504e commit bea036a
Show file tree
Hide file tree
Showing 4 changed files with 7,512 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"

[compat]
CEnum = "0.4, 0.5"
Clang_jll = "12,13,14,15,16"
Clang_jll = "12,13,14,15,16,17"
Downloads = "1.4"
TOML = "1.0"
julia = "1.7.0"
Expand Down
9 changes: 5 additions & 4 deletions gen/generator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ const libdir = joinpath(@__DIR__, "..", "lib")

cd(@__DIR__) do
for (llvm_version, julia_version) in (#=(v"12.0.1", v"1.7"),=#
(v"13.0.1", v"1.8"),
(v"14.0.5", v"1.9"),
(v"15.0.6", v"1.10"),
(v"16.0.6", v"1.11"))
#=(v"13.0.1", v"1.8"),=#
#=(v"14.0.5", v"1.9"),=#
#=(v"15.0.6", v"1.10"),=#
(v"16.0.6", v"1.11"),
(v"17.0.6", v"1.12"),)
@info "Generating..." llvm_version julia_version
temp_prefix() do prefix
# let prefix = Prefix(mktempdir())
Expand Down

0 comments on commit bea036a

Please sign in to comment.