comparison mx/mx_graal.py @ 21938:95956bc1b1a3

don't add command used to generate jvmci.make to the top of jvmci.make as it confuses the gate check that this file is in sync with suite*.py
author Doug Simon <doug.simon@oracle.com>
date Fri, 12 Jun 2015 01:25:58 +0200
parents 3a292e8b9e51
children 4fe034122fd3
comparison
equal deleted inserted replaced
21937:3a292e8b9e51 21938:95956bc1b1a3
1713 with Task('Pylint', tasks) as t: 1713 with Task('Pylint', tasks) as t:
1714 if t: mx.pylint([]) 1714 if t: mx.pylint([])
1715 1715
1716 with Task('Check jvmci.make in sync with suite.py', tasks) as t: 1716 with Task('Check jvmci.make in sync with suite.py', tasks) as t:
1717 if t: 1717 if t:
1718 jvmciMake = join(_graal_home, 'make', 'jvmci.make') 1718 jvmciMake = join('make', 'jvmci.make')
1719 if mx_graal_makefile.build_makefile(['-o', jvmciMake]) != 0: 1719 if mx_graal_makefile.build_makefile(['-o', jvmciMake]) != 0:
1720 t.abort('Rerun "mx makefile -o ' + jvmciMake + ' and check-in the modified ' + jvmciMake) 1720 t.abort('Rerun "mx makefile -o ' + jvmciMake + ' and check-in the modified ' + jvmciMake)
1721 1721
1722 def _clean(name='Clean'): 1722 def _clean(name='Clean'):
1723 with Task(name, tasks) as t: 1723 with Task(name, tasks) as t: