We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
LLVM_INCLUDE
LLVM_LIBDIR
The path to LLVM include directory is wrong.
julia> Clang.LLVM_LIBDIR "C:\\Users\\jessy\\.julia\\artifacts\\3135abc6132c4619d21c4edd03e416c2c46e3bec\\bin" julia> isdir(ans) true julia> Clang.LLVM_INCLUDE "C:\\Users\\jessy\\.julia\\artifacts\\3135abc6132c4619d21c4edd03e416c2c46e3bec\\bin\\clang\\9.0.1\\include" julia> isdir(ans) false
Perhaps the correct definition of the constants (in Clang.jl file) should be:
Clang.jl
const LLVM_BINDIR = dirname(LibClang.Clang_jll.libclang_path) const LLVM_LIBDIR = joinpath(dirname(LLVM_BINDIR), "lib") const LLVM_INCLUDE = joinpath(LLVM_LIBDIR, "clang", LLVM_VERSION, "include") const CLANG_INCLUDE = LLVM_INCLUDE
The text was updated successfully, but these errors were encountered:
Nice catch! I didn't test this on Windows.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The path to LLVM include directory is wrong.
Perhaps the correct definition of the constants (in
Clang.jl
file) should be:The text was updated successfully, but these errors were encountered: