Skip to content

Commit 0ef24ee

Browse files
authored
Auto merge of #35489 - sanxiyn:target-list, r=alexcrichton
Print Rust target name, not LLVM target name, for `--print target-list` Rust target name and LLVM target name are usually the same, but not always. For example, `arm-unknown-linux-musleabi` Rust target uses `arm-unknown-linux-gnueabi` LLVM target. Fix #35481.
2 parents 1f2ae38 + dc7407c commit 0ef24ee

File tree

1 file changed

+1
-1
lines changed
  • src/librustc_back/target

1 file changed

+1
-1
lines changed

src/librustc_back/target/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ macro_rules! supported_targets {
9494
pub fn get_targets() -> Box<Iterator<Item=String>> {
9595
Box::new(TARGETS.iter().filter_map(|t| -> Option<String> {
9696
load_specific(t)
97-
.map(|t| t.llvm_target)
97+
.and(Ok(t.to_string()))
9898
.ok()
9999
}))
100100
}

0 commit comments

Comments
 (0)