commit 6785c30

Devine Lu Linvega  ·  2023-05-04 04:39:04 +0000 UTC
parent 7d1c62b
Set build flag back to c89
1 files changed,  +1, -1
+1, -1
1@@ -1,7 +1,7 @@
2 #!/bin/sh -e
3 
4 RELEASE_FLAGS="-Os -DNDEBUG -g0 -s"
5-DEBUG_FLAGS="-std=c99 -D_POSIX_C_SOURCE=199309L -DDEBUG -Wall -Wno-unknown-pragmas -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined"
6+DEBUG_FLAGS="-std=c89 -D_POSIX_C_SOURCE=199309L -DDEBUG -Wall -Wno-unknown-pragmas -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined"
7 CORE_DEVICES="src/uxn.c src/devices/system.c src/devices/file.c src/devices/datetime.c -lpthread"
8 EMU_INC="${CORE_DEVICES} src/devices/screen.c src/devices/controller.c src/devices/mouse.c src/uxn11.c -o bin/uxn11 -lX11"
9 CLI_INC="${CORE_DEVICES} src/uxncli.c -o bin/uxncli"