Skip to content
This repository was archived by the owner on Mar 17, 2021. It is now read-only.

Commit f31bb06

Browse files
committed
Fix another path for Windows LLVM_jll
1 parent 30a7e10 commit f31bb06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CBindingGen.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ module CBindingGen
130130
convert_header(func::Function, header::String; kwargs...) = convert_headers(func, [header]; kwargs...)
131131
function convert_headers(func::Function, headers::Vector{String}; args::Vector{String} = String[])
132132
args = vcat(args, [
133-
"-isystem", joinpath(dirname(LIBCLANG_PATH), "clang", LIBCLANG_VERSION, "include"),
133+
"-isystem", joinpath(dirname(dirname(LIBCLANG_PATH)), "lib", "clang", LIBCLANG_VERSION, "include"),
134134
])
135135

136136
return mktempdir() do dir

0 commit comments

Comments
 (0)