Skip to content

Commit 201ca3f

Browse files
committed
changes after review
1 parent f71a627 commit 201ca3f

File tree

1 file changed

+11
-10
lines changed
  • tests/run-make/thumb-none-cortex-m

1 file changed

+11
-10
lines changed
+11-10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
//! Test building of the `cortex-m` crate, a foundational crate in the embedded ecosystem
2+
//! for a collection of thumb targets. This is a smoke test that verifies that both cargo
3+
//! and rustc work in this case.
4+
//!
15
//! How to run this
26
//! $ ./x.py clean
37
//! $ ./x.py test --target thumbv6m-none-eabi,thumbv7m-none-eabi tests/run-make
@@ -13,46 +17,43 @@
1317
use std::path::PathBuf;
1418

1519
use run_make_support::rfs::create_dir;
16-
use run_make_support::{cmd, env_var};
20+
use run_make_support::{cmd, env_var, target};
1721

1822
const CRATE: &str = "cortex-m";
1923
const CRATE_URL: &str = "https://github.com/rust-embedded/cortex-m";
2024
const CRATE_SHA1: &str = "a448e9156e2cb1e556e5441fd65426952ef4b927"; // v0.5.0
2125

2226
fn main() {
27+
// FIXME: requires an internet connection https://github.com/rust-lang/rust/issues/128733
2328
// See below link for git usage:
2429
// https://stackoverflow.com/questions/3489173#14091182
2530
cmd("git").args(["clone", CRATE_URL, CRATE]).run();
2631
std::env::set_current_dir(CRATE).unwrap();
2732
cmd("git").args(["reset", "--hard", CRATE_SHA1]).run();
2833

2934
let target_dir = PathBuf::from("target");
30-
let target = env_var("TARGET");
31-
3235
let manifest_path = PathBuf::from("Cargo.toml");
3336

3437
let path = env_var("PATH");
3538
let rustc = env_var("RUSTC");
3639
let bootstrap_cargo = env_var("BOOTSTRAP_CARGO");
40+
// FIXME: extract bootstrap cargo invocations to a proper command
41+
// https://github.com/rust-lang/rust/issues/128734
3742
let mut cmd = cmd(bootstrap_cargo);
3843
cmd.args(&[
3944
"build",
4045
"--manifest-path",
4146
manifest_path.to_str().unwrap(),
4247
"-Zbuild-std=core",
4348
"--target",
44-
&target,
49+
&target(),
4550
])
4651
.env("PATH", path)
4752
.env("RUSTC", rustc)
53+
.env("CARGO_TARGET_DIR", &target_dir)
4854
// Don't make lints fatal, but they need to at least warn
4955
// or they break Cargo's target info parsing.
50-
.env("RUSTFLAGS", "-Copt-level=0 -Cdebug-assertions=yes --cap-lints=warn")
51-
.env("CARGO_TARGET_DIR", &target_dir)
52-
.env("RUSTC_BOOTSTRAP", "1")
53-
// Visual Studio 2022 requires that the LIB env var be set so it can
54-
// find the Windows SDK.
55-
.env("LIB", std::env::var("LIB").unwrap_or_default());
56+
.env("RUSTFLAGS", "-Copt-level=0 -Cdebug-assertions=yes --cap-lints=warn");
5657

5758
cmd.run();
5859
}

0 commit comments

Comments
 (0)