changeset 22395:63e7eb179710

Set COMPILER_WARNINGS_FATAL=false during HotSpot build on MacOS
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Thu, 30 Jul 2015 17:09:15 +0200
parents 528eeeca785e
children bc63108eaae3
files mx.jvmci/mx_jvmci.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mx.jvmci/mx_jvmci.py	Wed Jul 29 10:36:54 2015 +0200
+++ b/mx.jvmci/mx_jvmci.py	Thu Jul 30 17:09:15 2015 +0200
@@ -879,6 +879,8 @@
             if mx.get_os() == 'darwin' and platform.mac_ver()[0] != '':
                 # Force use of clang on MacOS
                 setMakeVar('USE_CLANG', 'true')
+                setMakeVar('COMPILER_WARNINGS_FATAL', 'false')
+
             if mx.get_os() == 'solaris':
                 # If using sparcWorks, setup flags to avoid make complaining about CC version
                 cCompilerVersion = subprocess.Popen('CC -V', stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True).stderr.readlines()[0]