fix debug and release flags after uwproj update + add warnings in debug mode

Tue, 03 Jun 2025 08:43:17 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 03 Jun 2025 08:43:17 +0200
changeset 79
ffd452cf05ff
parent 78
ceb9197b3c6d
child 80
b980a7192b5a

fix debug and release flags after uwproj update + add warnings in debug mode

make/cc.mk file | annotate | diff | comparison | revisions
--- a/make/cc.mk	Mon Jun 02 19:40:24 2025 +0200
+++ b/make/cc.mk	Tue Jun 03 08:43:17 2025 +0200
@@ -3,6 +3,6 @@
 #
 
 CFLAGS =
-DEBUG_CC_FLAGS = -g
-RELEASE_CC_FLAGS = -O3 -DNDEBUG
+DEBUG_CFLAGS = -g -Wall -Werror -Wno-pointer-sign
+RELEASE_CFLAGS = -O3 -DNDEBUG
 LDFLAGS =

mercurial