diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-11-09 13:48:06 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-11-09 13:48:06 +0000 |
| commit | c94f759f10cbd7c535b6ffd7d74bc868d14b1a9a (patch) | |
| tree | accc7f72d6d3006256b231444e07d91edc218539 /compiler/rustc_codegen_cranelift/scripts/test_bootstrap.sh | |
| parent | 4b198d6871e4a3826f01f7d6111b1c3484853cd8 (diff) | |
| parent | 1fa693ca4462fc1f790693464cf765ad693616af (diff) | |
| download | rust-c94f759f10cbd7c535b6ffd7d74bc868d14b1a9a.tar.gz rust-c94f759f10cbd7c535b6ffd7d74bc868d14b1a9a.zip | |
Merge commit '1fa693ca4462fc1f790693464cf765ad693616af' into sync_cg_clif-2024-11-09
Diffstat (limited to 'compiler/rustc_codegen_cranelift/scripts/test_bootstrap.sh')
| -rwxr-xr-x | compiler/rustc_codegen_cranelift/scripts/test_bootstrap.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_cranelift/scripts/test_bootstrap.sh b/compiler/rustc_codegen_cranelift/scripts/test_bootstrap.sh index 791d457993d..770f2b6df6c 100755 --- a/compiler/rustc_codegen_cranelift/scripts/test_bootstrap.sh +++ b/compiler/rustc_codegen_cranelift/scripts/test_bootstrap.sh @@ -11,5 +11,22 @@ rm -r compiler/rustc_codegen_cranelift/{Cargo.*,src} cp ../Cargo.* compiler/rustc_codegen_cranelift/ cp -r ../src compiler/rustc_codegen_cranelift/src +# FIXME(rust-lang/rust#132719) remove once it doesn't break without this patch +cat <<EOF | git apply - +diff --git a/src/bootstrap/src/core/build_steps/compile.rs b/src/bootstrap/src/core/build_steps/compile.rs +index 3394f2a84a0..cb980dd4d7c 100644 +--- a/src/bootstrap/src/core/build_steps/compile.rs ++++ b/src/bootstrap/src/core/build_steps/compile.rs +@@ -1976,7 +1976,7 @@ fn run(self, builder: &Builder<'_>) -> Compiler { + } + } + +- { ++ if builder.config.llvm_enabled(target_compiler.host) && builder.config.llvm_tools_enabled { + // \`llvm-strip\` is used by rustc, which is actually just a symlink to \`llvm-objcopy\`, + // so copy and rename \`llvm-objcopy\`. + let src_exe = exe("llvm-objcopy", target_compiler.host); +EOF + ./x.py build --stage 1 library/std popd |
