You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you use another Julia installation that is compatible with the precompile file it will point to the wrong place:
julia> using Revise
julia> Sys.BINDIR
"/Users/kristoffercarlsson/Downloads/gitrepo/julia-1.10.4/bin"
# the Julia that Revise got compiled with:
julia> Revise.juliadir
"/Users/kristoffercarlsson/.julia/juliaup/julia-1.10.4+0.aarch64.apple.darwin14/share/julia"
The text was updated successfully, but these errors were encountered:
Good thought. I'm tempted to fix this by requiring Julia 1.10 and using typed globals, rather than making a Ref which changes the type of this variable. It's internal, but I wouldn't be shocked if people are depending on it regardless (it has a docstring).
If you use another Julia installation that is compatible with the precompile file it will point to the wrong place:
The text was updated successfully, but these errors were encountered: