added editable byte code

This commit is contained in:
2026-06-14 23:27:11 -06:00
parent 86fa139c9c
commit bfcd91e6fb
16 changed files with 619 additions and 22 deletions
+2 -2
View File
@@ -25,11 +25,11 @@ CFLAGS := -std=c++20 -O2 \
-Wsign-conversion -Wnull-dereference -Wdouble-promotion \
-Wformat=2 -Wimplicit-fallthrough -Wsuggest-override \
-Wextra-semi -Wduplicated-cond -Wduplicated-branches \
-Wlogical-op -Wuseless-cast
-Wlogical-op -Wuseless-cast -Wno-unused-parameter
LFLAGS := -std=c++20 -static -static-libstdc++ -static-libgcc \
-Wl,--fatal-warnings -Wl,--warn-common
LIBDIRS := -L"$(PATH_DESKTOPLIB)/out" -L"$(PATH_SPIDER_RUNTIME)/out"
LIB := -ldesktoplib #-lspider-runtime
LIB := -ldesktoplib -lspider-runtime
INC := -I"$(PATH_DESKTOPLIB)/src" -I"$(PATH_SPIDER_RUNTIME)/src" -I./src/
#---------------------------------------------------------------------------------