mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-01 03:52:39 +00:00
18 lines
651 B
Bash
Executable file
18 lines
651 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# format code
|
|
clang-format -i uxnasm.c
|
|
clang-format -i uxn.c
|
|
|
|
# remove old
|
|
rm -f ./uxnasm
|
|
rm -f ./uxn
|
|
rm -f ./boot.rom
|
|
|
|
# debug(slow)
|
|
cc -std=c89 -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 uxnasm.c -o uxnasm
|
|
cc -std=c89 -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 uxn.c -o uxn
|
|
|
|
# run
|
|
./uxnasm examples/cond.usm boot.rom
|
|
./uxn boot.rom
|