From 52e2ff4be1ea1ed7e9a48111a1dce6f9145a2d28 Mon Sep 17 00:00:00 2001 From: helixhorned Date: Sat, 11 Apr 2015 13:53:08 +0000 Subject: [PATCH] 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 --- polymer/eduke32/Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymer/eduke32/Makefile.common b/polymer/eduke32/Makefile.common index 4708a8320..42929c1cd 100644 --- a/polymer/eduke32/Makefile.common +++ b/polymer/eduke32/Makefile.common @@ -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)