Description
If I run Julia master
like ./julia
, I get this:
julia> using LinearSolve
Info Given LinearSolve was explicitly requested, output will be shown live
WARNING: Detected access to binding `LinearSolve.defaultalg_symbol` in a world prior to its definition world.
Julia 1.12 has introduced more strict world age semantics for global bindings.
!!! This code may malfunction under Revise.
!!! This code will error in future versions of Julia.
Hint: Add an appropriate `invokelatest` around the access to this binding.
To make this warning an error, and hence obtain a stack trace, use `julia --depwarn=error`.
Precompiling LinearSolve finished.
64 dependencies successfully precompiled in 59 seconds. 45 already precompiled.
1 dependency had output during precompilation:
┌ LinearSolve
│ [Output was shown above]
└
After deleting .julia/compiled/v1.13
, running it like ./julia --depwarn=error
, I get no warning or error during precompilation:
julia> using LinearSolve
Precompiling LinearSolve finished.
77 dependencies successfully precompiled in 88 seconds. 32 already precompiled.