comparison mx/mx_graal.py @ 21910:cf7b06489764

mx: Define BUILD_CLIENT_ONLY instead of setting JVM_VARIANTS when building client compiler
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Wed, 10 Jun 2015 11:06:41 +0200
parents 9fe51d8fae0f
children 11f241f26c61
comparison
equal deleted inserted replaced
21893:db885c930362 21910:cf7b06489764
1011 setMakeVar('STRIP_POLICY', 'no_strip') 1011 setMakeVar('STRIP_POLICY', 'no_strip')
1012 # This removes the need to unzip the *.diz files before debugging in gdb 1012 # This removes the need to unzip the *.diz files before debugging in gdb
1013 setMakeVar('ZIP_DEBUGINFO_FILES', '0', env=env) 1013 setMakeVar('ZIP_DEBUGINFO_FILES', '0', env=env)
1014 1014
1015 if buildSuffix == "1": 1015 if buildSuffix == "1":
1016 setMakeVar("JVM_VARIANTS", "client") 1016 setMakeVar("BUILD_CLIENT_ONLY", "true")
1017 elif buildSuffix == "":
1018 setMakeVar("JVM_VARIANTS", "server")
1019 1017
1020 # Clear this variable as having it set can cause very confusing build problems 1018 # Clear this variable as having it set can cause very confusing build problems
1021 env.pop('CLASSPATH', None) 1019 env.pop('CLASSPATH', None)
1022 1020
1023 # Issue an env prefix that can be used to run the make on the command line 1021 # Issue an env prefix that can be used to run the make on the command line