-
-
Notifications
You must be signed in to change notification settings - Fork 192
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
Missing libcholmod when building apps with filter_stdlibs = false
after updating PackageCompiler
#925
Comments
Strange, according to
|
Actually, my project does not need SuiteSparse, and SuiteSparse is not in Project.toml or Manifest.toml. |
Okay, but in that case
run... |
Oh, it is with |
I was seeing this in the CI for #929 on <1.10 as well, but not on 1.10. Though it appears fixed in: 15b3656 |
Hi,
I found some libs are missing when building apps, and it is because
create_app()
does not copy the libs to the new app's lib/julia folder. I did not have the same problem on Nov 10 2023, but after updating the dependencies yesterday, the following error message was shown:Environment
Julia version v1.8.5 and v1.10.0 were tested, and all have the same problem.
I manually fix the issue by copying libs from julia to my app after building app:
Working example
The working example is https://github.com/cihga39871/Atria
git clone https://github.com/cihga39871/Atria.git cd Atria julia ./build_atria.jl
The text was updated successfully, but these errors were encountered: