我现在在试图用rpmbuild,spec文件编译软件包rust-1.64.0版本,mips64el架构,但是我现在需要1.63.0<=rust<=1.64.0版本的rust做引导, 并且是rpm包。求求大佬,给我一份rpm包
If I understand correctly, you want a Rust compiler as an RPM package for Linux, specifically the mips64el (little-endian MIPS 64) platform, and the compiler version must be 1.63 or 1.64.
However, mips64el is not a supported platform for the Rust compiler. The closest thing is mips64 running Linux, but that only has Tier 3 support:
https://doc.rust-lang.org/rustc/platform-support/mips64-openwrt-linux-musl.html
Tier 3 target policy
At this tier, the Rust project provides no official support for a target, so we place minimal requirements on the introduction of targets.
We used to have Tier 2 mips targets, but they were dropped to tier3 due to insufficient support from LLVM.
Which means it's now up to 3rd parties to maintain and build rustc for those platforms.
Since you want an old rust version anyway you could try finding an old release tarball for that platform and then turn that into an RPM.
For Rust discussions in Chinese, you might want to check out rustcc.cn.