comparison mx.jvmci/mx_jvmci.py @ 22671:97f30e4d0e95

Pass ARCH_DATA_MODEL to make clean This is necessary so that the correct directories get removed.
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Thu, 08 Oct 2015 18:04:25 +0200
parents 7d4688ad5afd
children 1bbd4a7c274b
comparison
equal deleted inserted replaced
22670:7d4688ad5afd 22671:97f30e4d0e95
1027 outCapture = None 1027 outCapture = None
1028 else: 1028 else:
1029 def _consume(s): 1029 def _consume(s):
1030 pass 1030 pass
1031 outCapture = _consume 1031 outCapture = _consume
1032 mx.run([mx.gmake_cmd(), 'ALT_BOOTDIR=' + get_jvmci_bootstrap_jdk().home, 'clean'], out=outCapture, cwd=makeFiles) 1032 mx.run([mx.gmake_cmd(), 'ARCH_DATA_MODEL=64', 'ALT_BOOTDIR=' + get_jvmci_bootstrap_jdk().home, 'clean'], out=outCapture, cwd=makeFiles)
1033 mx.run([mx.gmake_cmd(), 'ALT_BOOTDIR=' + get_jvmci_bootstrap_jdk().home, 'ALT_OUTPUTDIR=' + nojvmci_outputdir, 'clean'], out=outCapture, cwd=makeFiles) 1033 mx.run([mx.gmake_cmd(), 'ARCH_DATA_MODEL=64', 'ALT_BOOTDIR=' + get_jvmci_bootstrap_jdk().home, 'ALT_OUTPUTDIR=' + nojvmci_outputdir, 'clean'], out=outCapture, cwd=makeFiles)
1034 rmIfExists(_jdksDir()) 1034 rmIfExists(_jdksDir())
1035 self._newestOutput = None 1035 self._newestOutput = None
1036 1036
1037 def build(args, vm=None): 1037 def build(args, vm=None):
1038 """build the VM binary 1038 """build the VM binary