comparison make/linux/makefiles/gcc.make @ 14422:2b8e28fdf503

Merge
author kvn
date Tue, 05 Nov 2013 17:38:04 -0800
parents e2722a66aba7 f2512d89ad0c
children 28f281e8de1d
comparison
equal deleted inserted replaced
14421:3068270ba476 14422:2b8e28fdf503
207 # Compiler warnings are treated as errors 207 # Compiler warnings are treated as errors
208 WARNINGS_ARE_ERRORS = -Werror 208 WARNINGS_ARE_ERRORS = -Werror
209 209
210 ifeq ($(USE_CLANG), true) 210 ifeq ($(USE_CLANG), true)
211 # However we need to clean the code up before we can unrestrictedly enable this option with Clang 211 # However we need to clean the code up before we can unrestrictedly enable this option with Clang
212 WARNINGS_ARE_ERRORS += -Wno-unused-value -Wno-logical-op-parentheses -Wno-parentheses-equality -Wno-parentheses 212 WARNINGS_ARE_ERRORS += -Wno-logical-op-parentheses -Wno-parentheses-equality -Wno-parentheses
213 WARNINGS_ARE_ERRORS += -Wno-switch -Wno-tautological-constant-out-of-range-compare -Wno-tautological-compare 213 WARNINGS_ARE_ERRORS += -Wno-switch -Wno-tautological-constant-out-of-range-compare -Wno-tautological-compare
214 WARNINGS_ARE_ERRORS += -Wno-delete-non-virtual-dtor -Wno-deprecated -Wno-format -Wno-dynamic-class-memaccess 214 WARNINGS_ARE_ERRORS += -Wno-delete-non-virtual-dtor -Wno-deprecated -Wno-format -Wno-dynamic-class-memaccess
215 WARNINGS_ARE_ERRORS += -Wno-return-type -Wno-empty-body 215 WARNINGS_ARE_ERRORS += -Wno-return-type -Wno-empty-body
216 endif 216 endif
217 217