Since commit bbdc7c4 ("bootstrap: Don't clone submodules unconditionally in dry-run"), this panics:
git clone https://github.com/rust-lang/rust && cd rust && ./configure && ./x.py install
with:
thread 'main' panicked at src/bootstrap/src/lib.rs:1683:20:
fs::read_to_string(toml_file_name) failed with No such file or directory (os error 2)
But this does not:
git clone https://github.com/rust-lang/rust && cd rust && ./configure && ./x.py build
The reason is that the Cargo submodule is not ready early enough.
This affects tools like tc-build: ClangBuiltLinux/tc-build#336 (originally reported by @nathanchance).
Cc @jyn514 @jieyouxu
Since commit bbdc7c4 ("bootstrap: Don't clone submodules unconditionally in dry-run"), this panics:
with:
But this does not:
The reason is that the Cargo submodule is not ready early enough.
This affects tools like tc-build: ClangBuiltLinux/tc-build#336 (originally reported by @nathanchance).
Cc @jyn514 @jieyouxu