Accept old spelling of Fuchsia target triples
Because the old spelling is widely used, some projects may need time to migrate their uses to the new triple spelling. The old spelling may eventually be removed altogether.
This commit is contained in:
parent
f6ef039775
commit
42aa075310
4 changed files with 9 additions and 1 deletions
|
@ -981,7 +981,7 @@ impl fmt::Display for StackProtector {
|
|||
}
|
||||
|
||||
macro_rules! supported_targets {
|
||||
( $(($triple:literal, $module:ident ),)+ ) => {
|
||||
( $(($triple:literal, $module:ident),)+ ) => {
|
||||
$(mod $module;)+
|
||||
|
||||
/// List of supported targets
|
||||
|
@ -1109,7 +1109,11 @@ supported_targets! {
|
|||
("x86_64-apple-darwin", x86_64_apple_darwin),
|
||||
("i686-apple-darwin", i686_apple_darwin),
|
||||
|
||||
// FIXME(fuchsia): Remove aarch64-fuchsia in favor of aarch64-unknown-fuchsia
|
||||
("aarch64-fuchsia", aarch64_fuchsia),
|
||||
("aarch64-unknown-fuchsia", aarch64_unknown_fuchsia),
|
||||
// FIXME(fuchsia): Remove x86_64-fuchsia in favor of x86_64-unknown-fuchsia
|
||||
("x86_64-fuchsia", x86_64_fuchsia),
|
||||
("x86_64-unknown-fuchsia", x86_64_unknown_fuchsia),
|
||||
|
||||
("avr-unknown-gnu-atmega328", avr_unknown_gnu_atmega328),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue