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
As of 0.7.0-alpha.198 (commit b331c70), I cannot build the system image; I suspect this has to do with the fact that I'm doing an out-of-tree build (specifically at julia/build where julia is the root of the git checkout) combined with the changes from PR #27633 (I'm guessing this line) — i.e.
$ cd$JULIA_GIT_DIR
$ cd usr/bin
$ ls ../../stdlib
Base64 Dates Distributed Future Libdl LinearAlgebra Markdown OldPkg Printf Random Serialization SharedArrays SparseArrays Test UUIDs
CRC32c DelimitedFiles FileWatching InteractiveUtils LibGit2 Logging Mmap Pkg Profile REPL SHA Sockets SuiteSparse Unicode
$ cd -
$ cd build/usr/bin
$ ls ../../stdlib
ls: cannot access '../../stdlib': No such file or directory
(Sys.BINDIR on my other computer where I haven't yet tried recompiling does show that it points to the build/usr/bin path.)
The text was updated successfully, but these errors were encountered:
diff --git a/base/sysinfo.jl b/base/sysinfo.jl
index 593802925f..ab19d99998 100644
--- a/base/sysinfo.jl+++ b/base/sysinfo.jl@@ -43,7 +43,7 @@ A string containing the full path to the directory containing the `julia` execut
A string containing the full path to the directory containing the `stdlib` packages.
"""
-STDLIB = "$BINDIR/../../stdlib" # for bootstrap+STDLIB = "$BINDIR/../share/julia/stdlib/v$(VERSION.major).$(VERSION.minor)" # for bootstrap
# helper to avoid triggering precompile warnings
As of 0.7.0-alpha.198 (commit b331c70), I cannot build the system image; I suspect this has to do with the fact that I'm doing an out-of-tree build (specifically at
julia/build
wherejulia
is the root of the git checkout) combined with the changes from PR #27633 (I'm guessing this line) — i.e.(
Sys.BINDIR
on my other computer where I haven't yet tried recompiling does show that it points to thebuild/usr/bin
path.)The text was updated successfully, but these errors were encountered: