Skip to content

Commit

Permalink
Fix the lib path for llvm15 (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnimuc authored Jun 11, 2023
1 parent 54f0769 commit 0f80131
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Clang.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ llvm_version = if Base.libllvm_version < v"13"
"12"
elseif Base.libllvm_version.major == 13
"13"
else
elseif Base.libllvm_version.major == 14
"14"
else
"15"
end
libdir = joinpath(@__DIR__, "..", "lib")

Expand Down

0 comments on commit 0f80131

Please sign in to comment.