Update build.sh

This commit is contained in:
Pablo Curiel 2024-04-15 15:17:47 +02:00
parent 101ae0a361
commit 65b86393c2
1 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,6 @@
#!/bin/bash
ARG=${1:-'--confirm'}
set -e
cd "$(dirname "${BASH_SOURCE[0]}")"
# Clean-up from last build
@ -22,12 +20,16 @@ cp $poc_path ./source/main.c
cp ./romfs/icon/nxdumptool.jpg ./romfs/icon/$poc_name.jpg
set -e
if [ ${ARG,,} != "--noconfirm" ]; then
make BUILD_TYPE="$poc_name" -j$(nproc)
else
make BUILD_TYPE="$poc_name" -j8 PREFIX="ccache aarch64-none-elf-"
fi
set +e
rm -f ./romfs/icon/$poc_name.jpg
mv -f ./$poc_name.nro ./code_templates/tmp/$poc_name.nro