diff make/solaris/makefiles/gcc.make @ 8722:67342b960b47

8008474: Add -Wundef to warning flags. Summary: Force use of undefined macros to be and error. Reviewed-by: dholmes, mikael
author jprovino
date Wed, 06 Mar 2013 13:50:54 -0500
parents 892acf0431ef
children de6a9e811145
line wrap: on
line diff
--- a/make/solaris/makefiles/gcc.make	Wed Mar 06 13:46:55 2013 -0500
+++ b/make/solaris/makefiles/gcc.make	Wed Mar 06 13:50:54 2013 -0500
@@ -118,8 +118,8 @@
 # Compiler warnings are treated as errors 
 WARNINGS_ARE_ERRORS = -Werror 
 # Enable these warnings. See 'info gcc' about details on these options
-ADDITIONAL_WARNINGS = -Wpointer-arith -Wconversion -Wsign-compare 
-CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(ADDITIONAL_WARNINGS) 
+WARNING_FLAGS = -Wpointer-arith -Wconversion -Wsign-compare -Wundef
+CFLAGS_WARN/DEFAULT = $(WARNINGS_ARE_ERRORS) $(WARNING_FLAGS)
 # Special cases 
 CFLAGS_WARN/BYFILE = $(CFLAGS_WARN/$@)$(CFLAGS_WARN/DEFAULT$(CFLAGS_WARN/$@))