uxn/build.sh

103 lines
2.0 KiB
Bash
Raw Permalink Normal View History

2021-08-18 23:23:15 +00:00
#!/bin/sh -e
2021-01-29 19:17:59 +00:00
format=0
console=0
2022-02-04 03:52:12 +00:00
install=0
debug=0
norun=0
while [ $# -gt 0 ]; do
case $1 in
--format)
format=1
shift
;;
--console)
console=1
shift
;;
2022-02-04 03:52:12 +00:00
--install)
install=1
shift
;;
--debug)
debug=1
shift
;;
--no-run)
norun=1
shift
;;
*)
shift
esac
done
rm -f bin/*
2021-01-29 19:17:59 +00:00
# When clang-format is present
if [ $format = 1 ];
then
clang-format -i src/uxnasm.c
clang-format -i src/uxncli.c
clang-format -i src/uxnemu.c
clang-format -i src/devices/*
fi
2021-03-23 02:04:31 +00:00
mkdir -p bin
CC="${CC:-cc}"
2023-10-10 14:12:47 +00:00
CFLAGS="${CFLAGS:--std=c89 -Wall -Wno-unknown-pragmas}"
2021-10-10 19:07:40 +00:00
case "$(uname -s 2>/dev/null)" in
MSYS_NT*|MINGW*) # MSYS2 on Windows
FILE_LDFLAGS="-liberty"
if [ $console = 1 ];
then
UXNEMU_LDFLAGS="-static $(sdl2-config --cflags --static-libs | sed -e 's/ -mwindows//g')"
else
UXNEMU_LDFLAGS="-static $(sdl2-config --cflags --static-libs)"
fi
2021-10-10 19:07:40 +00:00
;;
Darwin) # macOS
CFLAGS="${CFLAGS} -Wno-typedef-redefinition -D_C99_SOURCE"
UXNEMU_LDFLAGS="$(sdl2-config --cflags --static-libs)"
2021-10-10 19:07:40 +00:00
;;
Linux|*)
UXNEMU_LDFLAGS="-L/usr/local/lib $(sdl2-config --cflags --libs)"
2021-10-10 19:07:40 +00:00
;;
esac
if [ $debug = 1 ];
2021-03-23 02:04:31 +00:00
then
echo "[debug]"
2021-06-25 22:04:43 +00:00
CFLAGS="${CFLAGS} -DDEBUG -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined"
2021-03-23 02:04:31 +00:00
else
2023-03-03 00:56:49 +00:00
CFLAGS="${CFLAGS} -DNDEBUG -O2 -g0 -s"
2021-05-12 03:30:03 +00:00
fi
${CC} ${CFLAGS} src/uxnasm.c -o bin/uxnasm
2023-08-08 21:13:07 +00:00
${CC} ${CFLAGS} src/uxn.c src/devices/system.c src/devices/console.c src/devices/file.c src/devices/datetime.c src/devices/mouse.c src/devices/controller.c src/devices/screen.c src/devices/audio.c src/uxnemu.c ${UXNEMU_LDFLAGS} ${FILE_LDFLAGS} -o bin/uxnemu
${CC} ${CFLAGS} src/uxn.c src/devices/system.c src/devices/console.c src/devices/file.c src/devices/datetime.c src/uxncli.c ${FILE_LDFLAGS} -o bin/uxncli
2021-05-12 03:30:03 +00:00
2022-02-04 03:52:12 +00:00
if [ $install = 1 ]
2021-05-12 03:30:03 +00:00
then
2021-08-19 05:08:09 +00:00
cp bin/uxnemu bin/uxnasm bin/uxncli $HOME/bin/
2021-03-23 02:04:31 +00:00
fi
2021-02-09 18:06:55 +00:00
if [ $norun = 1 ]; then exit; fi
2023-08-08 22:56:40 +00:00
# Test version
bin/uxnasm -v
bin/uxncli -v
bin/uxnemu -v
2023-08-08 22:56:40 +00:00
2024-02-22 22:21:57 +00:00
# Start potato
2021-01-29 19:17:59 +00:00
2024-02-22 22:21:57 +00:00
bin/uxnemu -2x