Rollup merge of #80073 - kulikjak:add-target-alias-support, r=varkor
Add support for target aliases Closes #68214, see that for more info. `@varkor`
This commit is contained in:
commit
0b1e71899e
2 changed files with 19 additions and 1 deletions
|
@ -1491,7 +1491,7 @@ fn parse_target_triple(matches: &getopts::Matches, error_format: ErrorOutputType
|
|||
early_error(error_format, &format!("target file {:?} does not exist", path))
|
||||
})
|
||||
}
|
||||
Some(target) => TargetTriple::TargetTriple(target),
|
||||
Some(target) => TargetTriple::from_alias(target),
|
||||
_ => TargetTriple::from_triple(host_triple()),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue