/hg/release/icedtea7-forest-2.1/hotspot: PR1095: Allow -Werror t...

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Mon May 27 10:33:12 PDT 2013


changeset b965a723122e in /hg/release/icedtea7-forest-2.1/hotspot
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.1/hotspot?cmd=changeset;node=b965a723122e
author: andrew
date: Wed Aug 22 16:25:23 2012 +0100

	PR1095: Allow -Werror to be turned off.


diffstat:

 make/linux/makefiles/adlc.make   |  2 ++
 make/linux/makefiles/gcc.make    |  2 ++
 make/solaris/makefiles/adlc.make |  6 ++++--
 make/solaris/makefiles/gcc.make  |  4 +++-
 4 files changed, 11 insertions(+), 3 deletions(-)

diffs (56 lines):

diff -r 4a73d25caf23 -r b965a723122e make/linux/makefiles/adlc.make
--- a/make/linux/makefiles/adlc.make	Wed May 22 18:20:20 2013 +0100
+++ b/make/linux/makefiles/adlc.make	Wed Aug 22 16:25:23 2012 +0100
@@ -61,7 +61,9 @@
 
 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
 # Compiler warnings are treated as errors
+ifneq ($(COMPILER_WARNINGS_FATAL),false)
 CFLAGS_WARN = -Werror
+endif
 CFLAGS += $(CFLAGS_WARN)
 
 OBJECTNAMES = \
diff -r 4a73d25caf23 -r b965a723122e make/linux/makefiles/gcc.make
--- a/make/linux/makefiles/gcc.make	Wed May 22 18:20:20 2013 +0100
+++ b/make/linux/makefiles/gcc.make	Wed Aug 22 16:25:23 2012 +0100
@@ -143,7 +143,9 @@
 endif
 
 # Compiler warnings are treated as errors
+ifneq ($(COMPILER_WARNINGS_FATAL),false)
 WARNINGS_ARE_ERRORS = -Werror
+endif
 
 # Except for a few acceptable ones
 # Since GCC 4.3, -Wconversion has changed its meanings to warn these implicit
diff -r 4a73d25caf23 -r b965a723122e make/solaris/makefiles/adlc.make
--- a/make/solaris/makefiles/adlc.make	Wed May 22 18:20:20 2013 +0100
+++ b/make/solaris/makefiles/adlc.make	Wed Aug 22 16:25:23 2012 +0100
@@ -68,8 +68,10 @@
 
 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
 # Compiler warnings are treated as errors
-ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1)
-  CFLAGS_WARN = +w -errwarn
+ifneq ($(COMPILER_WARNINGS_FATAL),false)
+  ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1)
+    CFLAGS_WARN = +w -errwarn
+  endif
 endif
 CFLAGS += $(CFLAGS_WARN)
 
diff -r 4a73d25caf23 -r b965a723122e make/solaris/makefiles/gcc.make
--- a/make/solaris/makefiles/gcc.make	Wed May 22 18:20:20 2013 +0100
+++ b/make/solaris/makefiles/gcc.make	Wed Aug 22 16:25:23 2012 +0100
@@ -113,7 +113,9 @@
 
 
 # Compiler warnings are treated as errors 
-WARNINGS_ARE_ERRORS = -Werror 
+ifneq ($(COMPILER_WARNINGS_FATAL),false)
+WARNINGS_ARE_ERRORS = -Werror
+endif
 # 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) 



More information about the distro-pkg-dev mailing list