comparison mx/mx_graal.py @ 15461:f73fc9309f12

gate: use parallelized Java building in the gate
author Doug Simon <doug.simon@oracle.com>
date Thu, 01 May 2014 23:55:22 +0200
parents 5947bb02474f
children f2132fab8a6f
comparison
equal deleted inserted replaced
15460:7d24ff89dc7d 15461:f73fc9309f12
1259 t.abort('Rerun "mx canonicalizeprojects" and check-in the modified mx/projects files.') 1259 t.abort('Rerun "mx canonicalizeprojects" and check-in the modified mx/projects files.')
1260 tasks.append(t.stop()) 1260 tasks.append(t.stop())
1261 1261
1262 if mx.get_env('JDT'): 1262 if mx.get_env('JDT'):
1263 t = Task('BuildJavaWithEcj') 1263 t = Task('BuildJavaWithEcj')
1264 build(['--no-native', '--jdt-warning-as-error']) 1264 build(['-p', '--no-native', '--jdt-warning-as-error'])
1265 tasks.append(t.stop()) 1265 tasks.append(t.stop())
1266 1266
1267 _clean('CleanAfterEcjBuild') 1267 _clean('CleanAfterEcjBuild')
1268 1268
1269 t = Task('BuildJavaWithJavac') 1269 t = Task('BuildJavaWithJavac')
1270 build(['--no-native', '--force-javac']) 1270 build(['-p', '--no-native', '--force-javac'])
1271 tasks.append(t.stop()) 1271 tasks.append(t.stop())
1272 1272
1273 t = Task('Checkheaders') 1273 t = Task('Checkheaders')
1274 if checkheaders([]) != 0: 1274 if checkheaders([]) != 0:
1275 t.abort('Checkheaders warnings were found') 1275 t.abort('Checkheaders warnings were found')