The target information for mips64-openwrt-linux-musl
seems wrong
#131165
Labels
C-bug
Category: This is a bug.
O-MIPS
Target: MIPS processors
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Target triples are generally
arch-vendor-os-env
(with lots of exceptions), but themips64-openwrt-linux-musl
target (added in #92300) seems to be confused about the vendor?The target
cfg
s are currently (trimmed fromrustc --print cfg --target mips64-openwrt-linux-musl
):I think there's a few ways to fix this:
target_vendor="openwrt"
.mips64-unknown-openwrt-musl
or similar, and settarget_os="openwrt"
.target_abi = "abi64"
, and so the target name should containmuslabi64
.CC target maintainer @Itus-Shield
The text was updated successfully, but these errors were encountered: