-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #5228 - phil-opp:target-spec, r=alexcrichton
Add support for absolute target.json paths Builds upon rust-lang/rust#49019 with the goal to provide a solution to #4905. This PR does two things: ~~1. It appends a hash of the target path to the target folder name if a `*.json` path is passed as `--target`, like it's done in rust-lang/rust#49019. This helps differentiating targets with the same JSON file name and avoids sysroot clashes in `xargo`.~~ See #5228 (comment) 2. It canonicalizes the passed target path (if it's a `*.json` path), so that the path stays valid when building dependencies and setting the `RUST_TARGET_PATH` environment variable is no longer necessary.
- Loading branch information
Showing
3 changed files
with
184 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
use cargotest::is_nightly; | ||
use cargotest::support::{execs, project}; | ||
use hamcrest::assert_that; | ||
|
||
#[test] | ||
fn custom_target_minimal() { | ||
if !is_nightly() { | ||
return; | ||
} | ||
let p = project("foo") | ||
.file( | ||
"Cargo.toml", | ||
r#" | ||
[package] | ||
name = "foo" | ||
version = "0.0.1" | ||
authors = ["author@example.com"] | ||
"#, | ||
) | ||
.file( | ||
"src/lib.rs", | ||
r#" | ||
#![feature(no_core)] | ||
#![feature(lang_items)] | ||
#![no_core] | ||
pub fn foo() -> u32 { | ||
42 | ||
} | ||
#[lang = "sized"] | ||
pub trait Sized { | ||
// Empty. | ||
} | ||
#[lang = "copy"] | ||
pub trait Copy { | ||
// Empty. | ||
} | ||
"#, | ||
) | ||
.file( | ||
"custom-target.json", | ||
r#" | ||
{ | ||
"llvm-target": "x86_64-unknown-none-gnu", | ||
"data-layout": "e-m:e-i64:64-f80:128-n8:16:32:64-S128", | ||
"arch": "x86_64", | ||
"target-endian": "little", | ||
"target-pointer-width": "64", | ||
"target-c-int-width": "32", | ||
"os": "none", | ||
"linker-flavor": "ld.lld" | ||
} | ||
"#, | ||
) | ||
.build(); | ||
|
||
assert_that( | ||
p.cargo("build") | ||
.arg("--lib") | ||
.arg("--target") | ||
.arg("custom-target.json") | ||
.arg("-v"), | ||
execs().with_status(0), | ||
); | ||
assert_that( | ||
p.cargo("build") | ||
.arg("--lib") | ||
.arg("--target") | ||
.arg("src/../custom-target.json") | ||
.arg("-v"), | ||
execs().with_status(0), | ||
); | ||
} | ||
|
||
#[test] | ||
fn custom_target_dependency() { | ||
if !is_nightly() { | ||
return; | ||
} | ||
let p = project("foo") | ||
.file( | ||
"Cargo.toml", | ||
r#" | ||
[package] | ||
name = "foo" | ||
version = "0.0.1" | ||
authors = ["author@example.com"] | ||
[dependencies] | ||
bar = { path = "bar" } | ||
"#, | ||
) | ||
.file( | ||
"src/lib.rs", | ||
r#" | ||
#![feature(no_core)] | ||
#![feature(lang_items)] | ||
#![feature(optin_builtin_traits)] | ||
#![no_core] | ||
extern crate bar; | ||
pub fn foo() -> u32 { | ||
bar::bar() | ||
} | ||
#[lang = "freeze"] | ||
unsafe auto trait Freeze {} | ||
"#, | ||
) | ||
.file( | ||
"bar/Cargo.toml", | ||
r#" | ||
[package] | ||
name = "bar" | ||
version = "0.0.1" | ||
authors = ["author@example.com"] | ||
"#, | ||
) | ||
.file( | ||
"bar/src/lib.rs", | ||
r#" | ||
#![feature(no_core)] | ||
#![feature(lang_items)] | ||
#![no_core] | ||
pub fn bar() -> u32 { | ||
42 | ||
} | ||
#[lang = "sized"] | ||
pub trait Sized { | ||
// Empty. | ||
} | ||
#[lang = "copy"] | ||
pub trait Copy { | ||
// Empty. | ||
} | ||
"#, | ||
) | ||
.file( | ||
"custom-target.json", | ||
r#" | ||
{ | ||
"llvm-target": "x86_64-unknown-none-gnu", | ||
"data-layout": "e-m:e-i64:64-f80:128-n8:16:32:64-S128", | ||
"arch": "x86_64", | ||
"target-endian": "little", | ||
"target-pointer-width": "64", | ||
"target-c-int-width": "32", | ||
"os": "none", | ||
"linker-flavor": "ld.lld" | ||
} | ||
"#, | ||
) | ||
.build(); | ||
|
||
assert_that( | ||
p.cargo("build") | ||
.arg("--lib") | ||
.arg("--target") | ||
.arg("custom-target.json") | ||
.arg("-v"), | ||
execs().with_status(0), | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters