# HG changeset patch # User Gilles Duboscq # Date 1438268955 -7200 # Node ID 63e7eb1797103bf35b3197f08ddad1fac810e148 # Parent 528eeeca785ef0ed43138966bc0a301707fbf5d7 Set COMPILER_WARNINGS_FATAL=false during HotSpot build on MacOS diff -r 528eeeca785e -r 63e7eb179710 mx.jvmci/mx_jvmci.py --- 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]