mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
15 lines
317 B
Bash
15 lines
317 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "Sysroot PATH is not provided"
|
||
|
echo "Usage: arm_build SYSROOT_PATH"
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
if [ ! -d "./builddir_wasm" ]; then
|
||
|
sed "s|SYSROOT:|$1|g" arm_cross.txt > /tmp/.arm_cross.txt
|
||
|
meson builddir_arm --cross-file /tmp/.arm_cross.txt
|
||
|
fi
|
||
|
|
||
|
sudo ninja -C builddir_arm/
|