mirror of
https://github.com/gbdev/rgbds.git
synced 2025-12-05 01:07:48 +00:00
Enable -Wextra
-Wsign-compare has been disabled because flex generates a comparison that triggers a warning and cannot be fixed in the code. Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
2
Makefile
2
Makefile
@@ -26,7 +26,7 @@ PNGLDLIBS := `${PKG_CONFIG} --static --libs-only-l libpng`
|
||||
|
||||
VERSION_STRING := `git describe --tags --dirty --always 2>/dev/null`
|
||||
|
||||
WARNFLAGS := -Werror -Wall -Wpedantic
|
||||
WARNFLAGS := -Werror -Wall -Wextra -Wpedantic -Wno-sign-compare
|
||||
|
||||
# Overridable CFLAGS
|
||||
CFLAGS := -g
|
||||
|
||||
Reference in New Issue
Block a user