be36345849
Former-commit-id: 5d6bd10c6e9214f5980eddf86ed92d35c0e9ea93 Former-commit-id: 2ad4828ecbb3de7924f6103b106c7ec06c7822cc
22 lines
638 B
Markdown
22 lines
638 B
Markdown
# Experimental RustBoyAdvance-NG retroarch core
|
|
|
|
## Desktop Build
|
|
|
|
To build for your host system, run
|
|
```sh
|
|
cargo build --release
|
|
```
|
|
|
|
For Linux, the output is `repo/target/release/librustboyadvance_libretro.so`
|
|
For windows, the output is `repo/target/release/rustboyadvance_libretro.dll`
|
|
|
|
## Android Build
|
|
|
|
Assuming you have NDK toolchain installed and configured, this crate can be built for android targets.
|
|
|
|
For example, for armv7-linux-androideabi
|
|
```sh
|
|
cargo build --release --target=armv7-linux-androideabi
|
|
```
|
|
|
|
The output will be in `/repo/target/armv7-linux-androideabi/release/librustboyadvance_libretro.so` |