Skip to content

Commit a1c3ab3

Browse files
committed
Auto merge of #2335 - fpgaminer:config-target, r=alexcrichton
Fixed #2332. This PR adds `build.target` to the Cargo config file, which behaves in the same way as passing `--target` to Cargo. Example `.cargo/config`: ``` [build] target = "thumbv6m-none-eabi" ``` Similar to how `--jobs` overrides `build.jobs`, `--target` will override `build.target`. I added documentation to `config.md`, and a test to `test_cargo_cross_compile.rs`. I couldn't get cross compile working on my machine for `cargo test`. Hopefully travis passes it. This is my first PR against Cargo; sorry if I missed any procedures.
2 parents d282348 + 7442050 commit a1c3ab3

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

src/cargo/ops/cargo_compile.rs

+3
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,7 @@ fn source_ids_from_config(config: &Config, cur_path: &Path)
412412
/// configured options are:
413413
///
414414
/// * build.jobs
415+
/// * build.target
415416
/// * target.$target.ar
416417
/// * target.$target.linker
417418
/// * target.$target.libfoo.metadata
@@ -432,6 +433,8 @@ fn scrape_build_config(config: &Config,
432433
None => None,
433434
};
434435
let jobs = jobs.or(cfg_jobs).unwrap_or(::num_cpus::get() as u32);
436+
let cfg_target = try!(config.get_string("build.target")).map(|s| s.0);
437+
let target = target.or(cfg_target);
435438
let mut base = ops::BuildConfig {
436439
jobs: jobs,
437440
requested_target: target.clone(),

src/doc/config.md

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ timeout = 60000 # Timeout for each HTTP request, in milliseconds
8484
jobs = 1 # number of jobs to run by default (default to # cpus)
8585
rustc = "rustc" # the rust compiler tool
8686
rustdoc = "rustdoc" # the doc generator tool
87+
target = "triple" # build for the target triple
8788
target-dir = "target" # path of where to place all generated artifacts
8889
```
8990

tests/test_cargo_cross_compile.rs

+36
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,42 @@ test!(simple_cross {
7878
execs().with_status(0));
7979
});
8080

81+
test!(simple_cross_config {
82+
if disabled() { return }
83+
84+
let p = project("foo")
85+
.file(".cargo/config", &format!(r#"
86+
[build]
87+
target = "{}"
88+
"#, alternate()))
89+
.file("Cargo.toml", r#"
90+
[package]
91+
name = "foo"
92+
version = "0.0.0"
93+
authors = []
94+
build = "build.rs"
95+
"#)
96+
.file("build.rs", &format!(r#"
97+
fn main() {{
98+
assert_eq!(std::env::var("TARGET").unwrap(), "{}");
99+
}}
100+
"#, alternate()))
101+
.file("src/main.rs", &format!(r#"
102+
use std::env;
103+
fn main() {{
104+
assert_eq!(env::consts::ARCH, "{}");
105+
}}
106+
"#, alternate_arch()));
107+
108+
let target = alternate();
109+
assert_that(p.cargo_process("build").arg("-v"),
110+
execs().with_status(0));
111+
assert_that(&p.target_bin(&target, "foo"), existing_file());
112+
113+
assert_that(process(&p.target_bin(&target, "foo")),
114+
execs().with_status(0));
115+
});
116+
81117
test!(simple_deps {
82118
if disabled() { return }
83119

0 commit comments

Comments
 (0)