changeset 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
files mx.jvmci/mx_jvmci.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mx.jvmci/mx_jvmci.py	Thu Oct 08 05:19:44 2015 -0700
+++ b/mx.jvmci/mx_jvmci.py	Thu Oct 08 18:04:25 2015 +0200
@@ -1029,8 +1029,8 @@
             def _consume(s):
                 pass
             outCapture = _consume
-        mx.run([mx.gmake_cmd(), 'ALT_BOOTDIR=' + get_jvmci_bootstrap_jdk().home, 'clean'], out=outCapture, cwd=makeFiles)
-        mx.run([mx.gmake_cmd(), 'ALT_BOOTDIR=' + get_jvmci_bootstrap_jdk().home, 'ALT_OUTPUTDIR=' + nojvmci_outputdir, 'clean'], out=outCapture, cwd=makeFiles)
+        mx.run([mx.gmake_cmd(), 'ARCH_DATA_MODEL=64', 'ALT_BOOTDIR=' + get_jvmci_bootstrap_jdk().home, 'clean'], out=outCapture, cwd=makeFiles)
+        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)
         rmIfExists(_jdksDir())
         self._newestOutput = None