changeset 10010:893bc1dbb58c

gate: add bootstrap with aot configuration to gate check
author Bernhard Urban <bernhard.urban@jku.at>
date Wed, 12 Jun 2013 16:04:42 +0200
parents b5c87b5c6e9c
children e65727799325
files mx/commands.py
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mx/commands.py	Wed Jun 12 16:04:42 2013 +0200
+++ b/mx/commands.py	Wed Jun 12 16:04:42 2013 +0200
@@ -1044,6 +1044,11 @@
         vm(['-G:RegisterPressure=rbx,r11,r14,xmm3,xmm11,xmm14', '-esa', '-version'])
         tasks.append(t.stop())
 
+        _vmbuild = 'product'
+        t = Task('BootstrapWithAOTConfiguration:product')
+        vm(['-G:+AOTCompilation', '-esa', '-version'])
+        tasks.append(t.stop())
+
         originalVm = _vm
         _vm = 'server' # hosted mode
         t = Task('UnitTests:hosted-product')