This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ mkdir -p sysroot/lib/rustlib/$TARGET_TRIPLE/lib/
3030cp -r target/$TARGET_TRIPLE /$sysroot_channel /deps/* sysroot/lib/rustlib/$TARGET_TRIPLE /lib/
3131
3232# Since we can't override the sysroot for the UI tests anymore, we create a new toolchain and manually overwrite the sysroot directory.
33- my_toolchain_dir=$HOME /.rustup/toolchains/my_toolchain
33+ my_toolchain_dir=$HOME /.rustup/toolchains/codegen_gcc_ui_tests
3434rm -rf $my_toolchain_dir
3535rust_toolchain=$( cat ../rust-toolchain | grep channel | sed ' s/channel = "\(.*\)"/\1/' )
3636cp -r $HOME /.rustup/toolchains/$rust_toolchain -$TARGET_TRIPLE $my_toolchain_dir
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ function setup_rustc() {
213213
214214 rm config.toml || true
215215
216- my_toolchain_dir=$HOME /.rustup/toolchains/my_toolchain
216+ my_toolchain_dir=$HOME /.rustup/toolchains/codegen_gcc_ui_tests
217217
218218 cat > config.toml << EOF
219219changelog-seen = 2
@@ -224,8 +224,10 @@ deny-warnings = false
224224
225225[build]
226226cargo = "$my_toolchain_dir /bin/cargo"
227+ #cargo = "$( rustup which cargo) "
227228local-rebuild = true
228229rustc = "$my_toolchain_dir /bin/rustc"
230+ #rustc = "$HOME /.rustup/toolchains/$rust_toolchain -$TARGET_TRIPLE /bin/rustc"
229231
230232[target.x86_64-unknown-linux-gnu]
231233llvm-filecheck = "` which FileCheck-10 || which FileCheck-11 || which FileCheck-12 || which FileCheck-13 || which FileCheck-14` "
You can’t perform that action at this time.
0 commit comments