mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 02:30:46 +00:00
Makefile.common: for Clang, add -Wno-missing-braces.
Because we get spammed otherwise, regarding initializations of 'vec3f_t' and 'vec3d_t' variables. Update: actually, it also happens for GCC builds for me. git-svn-id: https://svn.eduke32.com/eduke32@5133 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f74b38bcd8
commit
52e2ff4be1
1 changed files with 1 additions and 1 deletions
|
@ -531,7 +531,7 @@ CWARNS := -W -Wall \
|
|||
#-Waddress -Wlogical-op
|
||||
|
||||
ifneq (0,$(CLANG))
|
||||
CWARNS+= -Wno-unused-value -Wno-parentheses
|
||||
CWARNS+= -Wno-unused-value -Wno-parentheses -Wno-missing-braces
|
||||
endif
|
||||
|
||||
COMMONFLAGS+= -funsigned-char -fno-strict-aliasing $(F_JUMP_TABLES)
|
||||
|
|
Loading…
Reference in a new issue