Skip to content

Commit 7139192

Browse files
committed
Auto merge of #5614 - infinity0:master, r=alexcrichton
Support cross-compile install Amazingly this Just Works, tested cross-compiling aho-corasick from amd64 to armhf on Debian.
2 parents 9e4845e + 0774e97 commit 7139192

File tree

2 files changed

+36
-35
lines changed

2 files changed

+36
-35
lines changed

src/bin/cargo/commands/install.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ pub fn cli() -> App {
3232
"Install only the specified example",
3333
"Install all examples",
3434
)
35+
.arg_target_triple("Build for the target triple")
3536
.arg(opt("root", "Directory to install packages into").value_name("DIR"))
3637
.after_help(
3738
"\
@@ -74,9 +75,6 @@ continuous integration systems.",
7475
pub fn exec(config: &mut Config, args: &ArgMatches) -> CliResult {
7576
let mut compile_opts = args.compile_options(config, CompileMode::Build)?;
7677
compile_opts.build_config.release = !args.is_present("debug");
77-
// We override target architecture to host architecture since it may be
78-
// set to some other architecture in .cargo/config.
79-
compile_opts.build_config.requested_target = None;
8078

8179
let krates = args.values_of("crate")
8280
.unwrap_or_default()

tests/testsuite/install.rs

+35-32
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ use std::io::prelude::*;
44

55
use cargo::util::ProcessBuilder;
66
use cargotest::install::{cargo_home, has_installed_exe};
7+
use cargotest::support::cross_compile;
78
use cargotest::support::git;
89
use cargotest::support::paths;
910
use cargotest::support::registry::Package;
@@ -1334,6 +1335,40 @@ fn dev_dependencies_lock_file_untouched() {
13341335
assert!(lock == lock2, "different lockfiles");
13351336
}
13361337

1338+
#[test]
1339+
fn install_target_native() {
1340+
pkg("foo", "0.1.0");
1341+
1342+
assert_that(
1343+
cargo_process("install")
1344+
.arg("foo")
1345+
.arg("--target")
1346+
.arg(cargotest::rustc_host()),
1347+
execs()
1348+
.with_status(0),
1349+
);
1350+
assert_that(cargo_home(), has_installed_exe("foo"));
1351+
}
1352+
1353+
#[test]
1354+
fn install_target_foreign() {
1355+
if cross_compile::disabled() {
1356+
return;
1357+
}
1358+
1359+
pkg("foo", "0.1.0");
1360+
1361+
assert_that(
1362+
cargo_process("install")
1363+
.arg("foo")
1364+
.arg("--target")
1365+
.arg(cross_compile::alternate()),
1366+
execs()
1367+
.with_status(0),
1368+
);
1369+
assert_that(cargo_home(), has_installed_exe("foo"));
1370+
}
1371+
13371372
#[test]
13381373
fn vers_precise() {
13391374
pkg("foo", "0.1.1");
@@ -1606,35 +1641,3 @@ fn git_repo_replace() {
16061641
.contains(&format!("{}", new_rev))
16071642
);
16081643
}
1609-
1610-
#[test]
1611-
fn install_with_non_existent_target() {
1612-
pkg("bar", "0.0.1");
1613-
1614-
let p = project("foo")
1615-
.file(
1616-
"Cargo.toml",
1617-
r#"
1618-
[package]
1619-
name = "foo"
1620-
version = "0.1.0"
1621-
authors = []
1622-
"#,
1623-
)
1624-
.file(
1625-
".cargo/config",
1626-
r#"
1627-
[build]
1628-
target = "non-existing-target"
1629-
"#,
1630-
)
1631-
.file("src/main.rs", "fn main() {}")
1632-
.build();
1633-
1634-
assert_that(
1635-
cargo_process("install").arg("bar").cwd(p.root()),
1636-
execs().with_status(0),
1637-
);
1638-
assert_that(cargo_home(), has_installed_exe("bar"));
1639-
}
1640-

0 commit comments

Comments
 (0)