You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo apt install qemu-system-gui qemu-utils # optional (for running and extracting in QEMU emulator)
83
83
```
84
+
85
+
## Cross compiling
86
+
87
+
NiceOS supports cross compiling using standard _Linux_ cross compile options using _ARCH_ and _CROSS_COMPILE_ environment variables. For example for arm64:
88
+
89
+
```bash
90
+
export ARCH=arm64
91
+
export CROSS_COMPILE='aarch64-linux-gnu-'
92
+
make build
93
+
```
94
+
95
+
[Here is example preset config](https://github.com/solcloud/nice-presets/blob/master/presets/raspi3b/config.sh) for Raspberry Pi 3 Model B.
0 commit comments