mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 14:12:36 +00:00
Older clang had -Wmissing-variable-declarations, which causes a heap of warnings, we disable it, because it's a stupid warning. However, because it's unsupported in newer clang, disabling it causes a warning, so we need to -Wno-unknown-warning-option. *sigh*
This commit is contained in:
parent
5f9f6c11b8
commit
9fffb3441c
1 changed files with 11 additions and 9 deletions
4
Makefile
4
Makefile
|
@ -24,7 +24,9 @@ ifeq ($(CC), clang)
|
|||
-Wno-conversion \
|
||||
-Wno-missing-prototypes \
|
||||
-Wno-float-equal \
|
||||
-Wno-cast-align
|
||||
-Wno-cast-align \
|
||||
-Wno-missing-variable-declarations \
|
||||
-Wno-unknown-warning-option
|
||||
else
|
||||
#Tiny C Compiler doesn't know what -pedantic-errors is
|
||||
# and instead of ignoring .. just errors.
|
||||
|
|
Loading…
Reference in a new issue