-
Notifications
You must be signed in to change notification settings - Fork 558
New issue
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
Clang: dlls not found #9585
Comments
How are you calling it? Be sure to read https://docs.binarybuilder.org/stable/jll/#ExecutableProduct very carefully before answering. |
Also, duplicate of #8015? |
It is similar to 8015, but much more specific (see above). The issue, that clang in the artifact does not seem to work, has not been solved. |
The Yggdrasil/P/pocl/build_tarballs.jl Lines 166 to 218 in f3a0cfe
|
@Thomas008 can you describe how exactly you are invoking clang? Ideally with code that we can use to reproduce the issue. Or perhaps the issue is indeed as suggested and you did not follow https://docs.binarybuilder.org/stable/jll/#ExecutableProduct ? |
I tried to call invoke clang diretly in the directory artifact (in the subdirectory The version of clang in the artifact puts the error message that the following dlls are not found:
When I copy all dll from the downloaded clang into the subdirectory |
Don't do that. JLLs aren't meant to be used that way. See #9585 (comment) Instead, do:
|
Doing
gives the error message
Downloading clang from e.g. This leads me to the conclusion that at least for Windows the clang of Clang_jll does not work. I use julia 1.10.6. The clang version that Clang_jll provides in the artifact directory seems to be clang-15. |
When calling
clang.exe
in the artifact, error messages occur that some dll's are not found. They are neither in thetools
-directory, nor in thebin
-directory. More specific the following dll's are not found:libclang-cpp.dll
,libLLVM-15jl.dll
,libstdc++-6.dll
.At least
libclang-cpp.dll is in the bin-directory. But
libLLVM-15jl.dlland
libstdc++-6.dll` are not there.Do you have any suggestions, how to repair this? Does Clang_jll not provide these dll's?
The text was updated successfully, but these errors were encountered: