Hi,
I've seen a few pandora users requesting a Rust toolset for their platform so after investigating a little, here's what should be enough to pull it off:
A native build recipe using qemu-user:
https://github.com/warricksothr/RustBuild/issues/8#issuecomment-167079367
Discussion about soft-float quirks including useful info on building a cross-compiler:
https://github.com/rust-lang/rust/issues/30710
The way to go is to modify the built-in `arm-unknown-linux-gnueabi` target (together with `arm-unknown-linux-gnueabi.mk` file) which will preclude any problems later on during cargo builds.
Good luck!
I've seen a few pandora users requesting a Rust toolset for their platform so after investigating a little, here's what should be enough to pull it off:
A native build recipe using qemu-user:
https://github.com/warricksothr/RustBuild/issues/8#issuecomment-167079367
Discussion about soft-float quirks including useful info on building a cross-compiler:
https://github.com/rust-lang/rust/issues/30710
The way to go is to modify the built-in `arm-unknown-linux-gnueabi` target (together with `arm-unknown-linux-gnueabi.mk` file) which will preclude any problems later on during cargo builds.
Good luck!