-
Notifications
You must be signed in to change notification settings - Fork 2
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
Build script failes on Windows using P4est_jll artifact #22
Comments
Hi @zjwegert , thanks for the issue! Unfortunately I do not have access to a windows machine, so you'll have to walk me throught it. My first impression is that if we are using an artifact, we probably always want to be using the function EDIT: It is showing now, after updating. I can also seem to have access to that function for artifacts on linux for versions 2.2-2.8 (i.e all versions supported). I'm then for using this function whenever we have an artifact. |
What do you think @amartinhuertas ? |
@zjwegert can you check the PR branch works on windows? |
Done! Works on my machine. |
The
build.jl
currently fails to find the libp4est library on Windows. This appears to be becauseP4est_jll
creates the.dll
files in the artifact directory bin (with a different name fromlibp4st
!) and creates a.dll.a
in in lib. The.dll.a
files are then not recognised byLibdl.find_library
.A workaround is to modify
build.jl
asinstead of
The text was updated successfully, but these errors were encountered: