Rollup merge of #104523 - flba-eb:fix_nto_target_name, r=wesleywiser
Don't use periods in target names Using a period in the target name can cause issues in e.g. cargo, see also https://rust-lang.zulipchat.com/#narrow/stream/182449-t-compiler.2Fhelp/topic/Running.20tests.20on.20remote.20target
This commit is contained in:
commit
3e9a2233d0
5 changed files with 32 additions and 14 deletions
|
@ -1250,8 +1250,8 @@ supported_targets! {
|
|||
|
||||
("mips64-openwrt-linux-musl", mips64_openwrt_linux_musl),
|
||||
|
||||
("aarch64-unknown-nto-qnx7.1.0", aarch64_unknown_nto_qnx_710),
|
||||
("x86_64-pc-nto-qnx7.1.0", x86_64_pc_nto_qnx710),
|
||||
("aarch64-unknown-nto-qnx710", aarch64_unknown_nto_qnx_710),
|
||||
("x86_64-pc-nto-qnx710", x86_64_pc_nto_qnx710),
|
||||
}
|
||||
|
||||
/// Cow-Vec-Str: Cow<'static, [Cow<'static, str>]>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue