Enable more pedantic compiler flags

This commit is contained in:
2022-11-22 21:11:06 -05:00
parent e02d8433fa
commit 2510c7f36a
9 changed files with 39 additions and 26 deletions

View File

@@ -142,7 +142,7 @@ class BuildVariant:
self.env.Alias(self.variant_name, self.variant_dir)
base_ccflags = ["-Werror", "-Wall", "-Wextra", "-Wno-unused-parameter"]
base_ccflags = ["-Werror", "-Wall", "-Wextra", "-Wpedantic"]
debug_ccflags = ["-ggdb", "-O0"]
release_ccflags = [
"-Oz",