changed some debugging functions to only compile when DEBUG is defined

This commit is contained in:
2026-06-25 23:20:02 +03:00
parent 8b3c52f580
commit c7b89aded5
6 changed files with 45 additions and 27 deletions

View File

@@ -26,7 +26,7 @@ fi
version=$(git rev-parse HEAD)
oflag="-Og"
debug_flag="-ggdb"
debug_flag="-ggdb -DDEBUG"
if [ $arg = "release" ]; then
oflag="-O3"