fix wrong flags in toolchain.mk files after updating uwproj + add gcc config with extra warnings

Sat, 03 May 2025 13:30:04 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 03 May 2025 13:30:04 +0200
changeset 104
2ca88ec29953
parent 103
d9549dd8e9a9
child 105
2b7f92ff2c15

fix wrong flags in toolchain.mk files after updating uwproj + add gcc config with extra warnings

make/cc.mk file | annotate | diff | comparison | revisions
make/gcc.mk file | annotate | diff | comparison | revisions
--- a/make/cc.mk	Fri May 02 19:27:49 2025 +0200
+++ b/make/cc.mk	Sat May 03 13:30:04 2025 +0200
@@ -3,6 +3,6 @@
 #
 
 CFLAGS =
-DEBUG_CC_FLAGS = -g
-RELEASE_CC_FLAGS = -O3 -DNDEBUG
+DEBUG_CFLAGS = -g
+RELEASE_CFLAGS = -O3 -DNDEBUG
 LDFLAGS =
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/make/gcc.mk	Sat May 03 13:30:04 2025 +0200
@@ -0,0 +1,8 @@
+ #
+ # gcc toolchain config
+ #
+
+ CFLAGS =
+ DEBUG_CFLAGS = -g -Wall -Wextra -Werror -pedantic
+ RELEASE_CFLAGS = -O3 -DNDEBUG
+ LDFLAGS =
\ No newline at end of file

mercurial