From 84d27a5e784731a5dbd51becb97c435e877e50b7 Mon Sep 17 00:00:00 2001 From: Mick Jordan <mick.jordan@oracle.com> Date: Thu, 21 Aug 2014 14:04:08 -0700 Subject: [PATCH] bump required mx version; override build command --- mx.fastr/mx_fastr.py | 6 ++++++ mx.fastr/projects | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/mx.fastr/mx_fastr.py b/mx.fastr/mx_fastr.py index d400e20603..48d27a9a60 100644 --- a/mx.fastr/mx_fastr.py +++ b/mx.fastr/mx_fastr.py @@ -61,6 +61,11 @@ def _set_libpath(): lib_env = 'LD_LIBRARY_PATH' os.environ[lib_env] = lib_value +def build(args): + '''FastR build''' + # Overridden in case we ever want to do anything non-standard + mx_graal.build(args) # this calls mx.build + def findbugs(args): '''run FindBugs against non-test Java projects''' findBugsHome = mx.get_env('FINDBUGS_HOME', None) @@ -347,6 +352,7 @@ def mx_init(suite): 'rtestgen' : [testgen, ''], # core overrides 'bench' : [bench, ''], + 'build' : [build, ''], 'gate' : [gate, ''], 'junit' : [junit, ['options']], 'junitsimple' : [junit_simple, ['options']], diff --git a/mx.fastr/projects b/mx.fastr/projects index b763b89f92..75800e13b4 100644 --- a/mx.fastr/projects +++ b/mx.fastr/projects @@ -1,5 +1,5 @@ suite=fastr -mxversion=2.5.2 +mxversion=2.5.3 library@JDK_TOOLS@path=${JAVA_HOME}/lib/tools.jar library@JDK_TOOLS@sha1=NOCHECK -- GitLab