Rust Bare-Metal Cross-Compilation for AArch64: can't find crate for `core` - Stack Overflow
Ways to cross-compile Rust for aarch64 android target
[Solved] Cross compile to aarch64 from windows10
Compiling with `cross-rs` to `aarch64-unknown-linux-gnu`
Does anyone have a good docs on how to cross-compile Rust for aarch64 Android target? I have to run it on CI as well as locally. Thanks!
I am trying to cross compile rust. I am able to build and compile the binary successfully, however when i run this binary on aarch64 architecture, i get the following error
```
./crossed: /lib/libc.so.6: version `GLIBC_2.33' not found (required by ./crossed)
./crossed: /lib/libc.so.6: version `GLIBC_2.32' not found (required by ./crossed)
./crossed: /lib/libc.so.6: version `GLIBC_2.34' not found (required by ./crossed)
```
I am not sure what i did wrong. can you please help me out.
I have used the cross-rs tool and it works properly and generates a binary that is working but i am not sure what i am doing wrong. I am using aarch64-unknown-linux-gnu as target compiler
Hi,
Can I cross compile some rust project with many dependencies on raspberry pi 5 (arm) for x86_64 Linux ?