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
This was found in JuliaPackaging/BinaryBuilderBase.jl#260 (comment).
But basically when deps_graph receives a julia version it tries to look for the paths of the stdlibs, which was fine until DelimitedFiles was removed. Since DelimitedFiles was still a stdlib in 1.5 it does try to find it, but since it looks at the host julia stdlibs it doesn't find it. Leading to the error.
To reproduce this just add BinaryBuilderBase and run the functions in the gist below in a recent master build.
It also has the output of some printf debugging https://gist.github.com/gbaraldi/0908d3c4603b49754cdb590c642fb6cd
The text was updated successfully, but these errors were encountered:
This was found in JuliaPackaging/BinaryBuilderBase.jl#260 (comment).
But basically when
deps_graph
receives a julia version it tries to look for the paths of the stdlibs, which was fine until DelimitedFiles was removed. Since DelimitedFiles was still a stdlib in 1.5 it does try to find it, but since it looks at the host julia stdlibs it doesn't find it. Leading to the error.To reproduce this just add BinaryBuilderBase and run the functions in the gist below in a recent master build.
It also has the output of some printf debugging
https://gist.github.com/gbaraldi/0908d3c4603b49754cdb590c642fb6cd
The text was updated successfully, but these errors were encountered: