Skip to content

Commit 0774e97

Browse files
committed
Support cross-compile install
1 parent 3b94f44 commit 0774e97

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

src/bin/cargo/commands/install.rs

+1
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
"\

tests/testsuite/install.rs

+35
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");

0 commit comments

Comments
 (0)