2022-04-22 14:11:38 -05:00
|
|
|
#!/usr/bin/env bash
|
2021-03-29 03:45:09 -05:00
|
|
|
set -e
|
|
|
|
|
2021-12-30 07:53:41 -06:00
|
|
|
./y.rs build --no-unstable-features
|
2021-07-07 04:14:20 -05:00
|
|
|
source scripts/config.sh
|
2021-03-29 03:45:09 -05:00
|
|
|
|
|
|
|
echo "[SETUP] Rust fork"
|
|
|
|
git clone https://github.com/rust-lang/rust.git || true
|
|
|
|
pushd rust
|
|
|
|
git fetch
|
|
|
|
git checkout -- .
|
|
|
|
git checkout "$(rustc -V | cut -d' ' -f3 | tr -d '(')"
|
|
|
|
|
|
|
|
git apply - <<EOF
|
|
|
|
diff --git a/library/alloc/Cargo.toml b/library/alloc/Cargo.toml
|
|
|
|
index d95b5b7f17f..00b6f0e3635 100644
|
|
|
|
--- a/library/alloc/Cargo.toml
|
|
|
|
+++ b/library/alloc/Cargo.toml
|
|
|
|
@@ -8,7 +8,7 @@ edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
core = { path = "../core" }
|
2021-05-27 06:08:14 -05:00
|
|
|
-compiler_builtins = { version = "0.1.40", features = ['rustc-dep-of-std'] }
|
2021-12-20 11:56:35 -06:00
|
|
|
+compiler_builtins = { version = "0.1.66", features = ['rustc-dep-of-std', 'no-asm'] }
|
2021-03-29 03:45:09 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.7"
|
2021-05-27 06:08:14 -05:00
|
|
|
rand_xorshift = "0.2"
|
2022-03-20 10:55:21 -05:00
|
|
|
diff --git a/src/tools/compiletest/src/header.rs b/src/tools/compiletest/src/header.rs
|
|
|
|
index 887d27fd6dca4..2c2239f2b83d1 100644
|
|
|
|
--- a/src/tools/compiletest/src/header.rs
|
|
|
|
+++ b/src/tools/compiletest/src/header.rs
|
|
|
|
@@ -806,8 +806,8 @@ pub fn make_test_description<R: Read>(
|
|
|
|
cfg: Option<&str>,
|
|
|
|
) -> test::TestDesc {
|
|
|
|
let mut ignore = false;
|
|
|
|
#[cfg(not(bootstrap))]
|
|
|
|
- let ignore_message: Option<String> = None;
|
|
|
|
+ let ignore_message: Option<&str> = None;
|
|
|
|
let mut should_fail = false;
|
|
|
|
|
|
|
|
let rustc_has_profiler_support = env::var_os("RUSTC_PROFILER_SUPPORT").is_some();
|
|
|
|
|
|
|
|
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs
|
|
|
|
index 8431aa7b818..a3ff7e68ce5 100644
|
|
|
|
--- a/src/tools/compiletest/src/runtest.rs
|
|
|
|
+++ b/src/tools/compiletest/src/runtest.rs
|
|
|
|
@@ -3489,11 +3489,7 @@ fn normalize_output(&self, output: &str, custom_rules: &[(String, String)]) -> S
|
|
|
|
.join("library");
|
|
|
|
normalize_path(&src_dir, "$(echo '$SRC_DIR')");
|
|
|
|
|
|
|
|
- if let Some(virtual_rust_source_base_dir) =
|
|
|
|
- option_env!("CFG_VIRTUAL_RUST_SOURCE_BASE_DIR").map(PathBuf::from)
|
|
|
|
- {
|
|
|
|
- normalize_path(&virtual_rust_source_base_dir.join("library"), "$(echo '$SRC_DIR')");
|
|
|
|
- }
|
|
|
|
+ normalize_path(&Path::new("$(cd ../build_sysroot/sysroot_src/library; pwd)"), "$(echo '$SRC_DIR')");
|
|
|
|
|
|
|
|
// Paths into the build directory
|
|
|
|
let test_build_dir = &self.config.build_base;
|
2021-03-29 03:45:09 -05:00
|
|
|
EOF
|
|
|
|
|
|
|
|
cat > config.toml <<EOF
|
2022-03-20 10:55:21 -05:00
|
|
|
changelog-seen = 2
|
|
|
|
|
2021-03-29 03:45:09 -05:00
|
|
|
[llvm]
|
|
|
|
ninja = false
|
|
|
|
|
|
|
|
[build]
|
|
|
|
rustc = "$(pwd)/../build/bin/cg_clif"
|
|
|
|
cargo = "$(rustup which cargo)"
|
|
|
|
full-bootstrap = true
|
|
|
|
local-rebuild = true
|
|
|
|
|
|
|
|
[rust]
|
|
|
|
codegen-backends = ["cranelift"]
|
|
|
|
deny-warnings = false
|
2021-12-20 11:56:35 -06:00
|
|
|
verbose-tests = false
|
2021-03-29 03:45:09 -05:00
|
|
|
EOF
|
|
|
|
popd
|