250 líneas de comentario en 151 scripts. Control verificado: el diff no toca NI UNA línea que no empiece por #, y la sintaxis de los 151 pasa. El barrido saltea heredocs y cadenas triples, y el guardián DISPARÓ 3 veces: las tres eran el MOTD que el script escribe DENTRO de la imagen construida — texto del producto, no comentario del script. Se cambiaron aparte y a propósito, que es rebranding, no limpieza. Y el hallazgo caro: casaba contra , que es el TARGET de tracing — o sea el module_path!, o sea el nombre del crate. La etapa 4 lo movió a y el script quedó casando NADA. No fallaba: imprimía cero atribuciones, indistinguible de un log sin problemas. Comprobado con el binario (RUST_LOG=info sobre zlib), no deducido. Ahora acepta las dos, y tiene que seguir aceptándolas porque los logs viejos en disco dicen la vieja. Además 14 rutas de módulo en docs, que el barrido anterior no tocó porque no es frontera de palabra.
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
# bootstrap.toml — takana self-host climb (musl host, hermetic Alpine devfs sandbox).
|
|
# stage0 = the mrustc-bootstrapped rustc/cargo 1.90.0 (musl host); LLVM 20.1.8 reused
|
|
# externally; dynamic link against the devfs's system musl (crt-static = false), exactly
|
|
# like Alpine's own rust and the run_rustc stage-3 toolchain.
|
|
|
|
[build]
|
|
build = "x86_64-unknown-linux-musl"
|
|
host = ["x86_64-unknown-linux-musl"]
|
|
target = ["x86_64-unknown-linux-musl"]
|
|
rustc = "/mrustc/run_rustc/output-1.90.0-x86_64-unknown-linux-musl/prefix/bin/rustc"
|
|
cargo = "/mrustc/run_rustc/output-1.90.0-x86_64-unknown-linux-musl/prefix/bin/cargo"
|
|
python = "/usr/bin/python3"
|
|
submodules = false
|
|
docs = false
|
|
extended = false
|
|
vendor = true
|
|
locked-deps = true
|
|
verbose = 1
|
|
|
|
[rust]
|
|
channel = "stable"
|
|
download-rustc = false
|
|
lld = false
|
|
llvm-tools = false
|
|
rpath = true
|
|
|
|
[install]
|
|
prefix = "/out"
|
|
sysconfdir = "etc"
|
|
|
|
[llvm]
|
|
download-ci-llvm = false
|
|
|
|
[target.x86_64-unknown-linux-musl]
|
|
llvm-config = "/mrustc/rustc-1.90.0-src/build/bin/llvm-config"
|
|
crt-static = false
|
|
cc = "gcc"
|
|
cxx = "g++"
|
|
linker = "gcc"
|