mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
Auto merge of #5606 - vramana:fix/cargo-install, r=alexcrichton
`cargo install` will ignore the target triple specified in a project directory Fixes #5441
This commit is contained in:
commit
561beb22d2
@ -74,6 +74,9 @@ continuous integration systems.",
|
|||||||
pub fn exec(config: &mut Config, args: &ArgMatches) -> CliResult {
|
pub fn exec(config: &mut Config, args: &ArgMatches) -> CliResult {
|
||||||
let mut compile_opts = args.compile_options(config, CompileMode::Build)?;
|
let mut compile_opts = args.compile_options(config, CompileMode::Build)?;
|
||||||
compile_opts.build_config.release = !args.is_present("debug");
|
compile_opts.build_config.release = !args.is_present("debug");
|
||||||
|
// We override target architecture to host architecture since it may be
|
||||||
|
// set to some other architecture in .cargo/config.
|
||||||
|
compile_opts.build_config.requested_target = None;
|
||||||
|
|
||||||
let krates = args.values_of("crate")
|
let krates = args.values_of("crate")
|
||||||
.unwrap_or_default()
|
.unwrap_or_default()
|
||||||
|
@ -1606,3 +1606,35 @@ fn git_repo_replace() {
|
|||||||
.contains(&format!("{}", new_rev))
|
.contains(&format!("{}", new_rev))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn install_with_non_existent_target() {
|
||||||
|
pkg("bar", "0.0.1");
|
||||||
|
|
||||||
|
let p = project("foo")
|
||||||
|
.file(
|
||||||
|
"Cargo.toml",
|
||||||
|
r#"
|
||||||
|
[package]
|
||||||
|
name = "foo"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = []
|
||||||
|
"#,
|
||||||
|
)
|
||||||
|
.file(
|
||||||
|
".cargo/config",
|
||||||
|
r#"
|
||||||
|
[build]
|
||||||
|
target = "non-existing-target"
|
||||||
|
"#,
|
||||||
|
)
|
||||||
|
.file("src/main.rs", "fn main() {}")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
assert_that(
|
||||||
|
cargo_process("install").arg("bar").cwd(p.root()),
|
||||||
|
execs().with_status(0),
|
||||||
|
);
|
||||||
|
assert_that(cargo_home(), has_installed_exe("bar"));
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user