build: include SuiteSparse in pkgimages to precompile#60291
Merged
vtjnash merged 1 commit intoJuliaLang:masterfrom Dec 2, 2025
Merged
build: include SuiteSparse in pkgimages to precompile#60291vtjnash merged 1 commit intoJuliaLang:masterfrom
SuiteSparse in pkgimages to precompile#60291vtjnash merged 1 commit intoJuliaLang:masterfrom
Conversation
Member
Author
|
Unlike 1.10 / 1.11, 1.12 also complains in non-interactive mode: $ rm -rf ~/.julia/compiled/*/SuiteSparse/
$ julia +1.10 -e "using SuiteSparse"
$ julia +1.12 -e "using SuiteSparse"
Precompiling SuiteSparse finished.
1 dependency successfully precompiled in 1 seconds |
6d52982 to
8f5b18b
Compare
Member
|
That was a known v1.12 bug when we released it, fixed again by #59652 in v1.13 |
Member
|
(Which is a user regression because now you look at an empty screen for 5 min wondering if your program is making progress or if things are taking forever precompiling). |
KristofferC
pushed a commit
that referenced
this pull request
Dec 16, 2025
This seems to be an issue at least as far back as 1.10: ```julia $ rm -rf ~/.julia/compiled/*/SuiteSparse/ $ julia +1.10 -q julia> using SuiteSparse [ Info: Precompiling SuiteSparse [4607b0f0-06f3-5cda-b6b1-a6196a1729e9] ``` (cherry picked from commit d6f2a7e)
KristofferC
pushed a commit
that referenced
this pull request
Dec 16, 2025
This seems to be an issue at least as far back as 1.10: ```julia $ rm -rf ~/.julia/compiled/*/SuiteSparse/ $ julia +1.10 -q julia> using SuiteSparse [ Info: Precompiling SuiteSparse [4607b0f0-06f3-5cda-b6b1-a6196a1729e9] ``` (cherry picked from commit d6f2a7e)
This was referenced Jan 14, 2026
45 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This seems to be an issue at least as far back as 1.10: