From 38c2ee33dcbac1a18108b689e6babca198d16c40 Mon Sep 17 00:00:00 2001 From: Mick Jordan <mick.jordan@oracle.com> Date: Thu, 3 Nov 2016 14:41:45 -0700 Subject: [PATCH] properly ensure that recommended packages can be built in all situations and are included in the release --- .gitignore | 2 +- mx.fastr/mx_fastr.py | 4 ++-- mx.fastr/mx_fastr_dists.py | 18 +++++++++++++++++- mx.fastr/suite.py | 13 +++++-------- 4 files changed, 25 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 5d9988fc55..3eed6ca477 100644 --- a/.gitignore +++ b/.gitignore @@ -28,7 +28,7 @@ /com.oracle.truffle.r.native/include/linked /com.oracle.truffle.r.native/fficall/jni.done /com.oracle.truffle.r.native/fficall/jniboot.done - +/com.oracle.truffle.r.native.recommended/install.recommended /com.oracle.truffle.r.test.native/packages/copy_recommended /com.oracle.truffle.r.test.native/packages/recommended /com.oracle.truffle.r.test.native/packages/*/lib/* diff --git a/mx.fastr/mx_fastr.py b/mx.fastr/mx_fastr.py index 6ce83b3ed5..8867d380fb 100644 --- a/mx.fastr/mx_fastr.py +++ b/mx.fastr/mx_fastr.py @@ -27,7 +27,7 @@ import mx import mx_gate import mx_fastr_pkgs import mx_fastr_dists -from mx_fastr_dists import FastRNativeProject, FastRTestNativeProject, FastRReleaseProject #pylint: disable=unused-import +from mx_fastr_dists import FastRNativeProject, FastRTestNativeProject, FastRReleaseProject, FastRNativeRecommendedProject #pylint: disable=unused-import import mx_copylib import mx_fastr_mkgramrd @@ -90,7 +90,7 @@ def do_run_r(args, command, extraVmArgs=None, jdk=None, **kwargs): if not jdk: jdk = get_default_jdk() - vmArgs = ['-cp', mx.classpath(jdk=jdk)] + vmArgs = ['-cp', mx.classpath('FASTR', jdk=jdk)] if 'nocompile' in kwargs: nocompile = True diff --git a/mx.fastr/mx_fastr_dists.py b/mx.fastr/mx_fastr_dists.py index 39961a6f02..3540c599f7 100644 --- a/mx.fastr/mx_fastr_dists.py +++ b/mx.fastr/mx_fastr_dists.py @@ -263,6 +263,23 @@ class ReleaseBuildTask(mx.NativeBuildTask): rscript_launcher = join(self.subject.dir, 'src', 'Rscript_launcher') self._template(rscript_launcher, join(bin_dir, 'Rscript'), template_dict) +class FastRNativeRecommendedProject(mx.NativeProject): + def __init__(self, suite, name, deps, workingSets, theLicense, **args): + mx.NativeProject.__init__(self, suite, name, None, [], deps, workingSets, None, None, join(suite.dir, name), theLicense) + + def getBuildTask(self, args): + return NativeRecommendedBuildTask(self, args) + +class NativeRecommendedBuildTask(mx.NativeBuildTask): + def __init__(self, project, args): + mx.NativeBuildTask.__init__(self, args, project) + + def build(self): + # must archive FASTR before build so that nested mx R CMD INSTALL can execute + mx.archive(['@FASTR']) + mx.NativeBuildTask.build(self) + + class FastRArchiveParticipant: def __init__(self, dist): self.dist = dist @@ -292,7 +309,6 @@ class FastRArchiveParticipant: include_dir = join(self.release_project.dir, 'include') shutil.rmtree(include_dir) - def mx_post_parse_cmd_line(opts): for dist in mx_fastr._fastr_suite.dists: dist.set_archiveparticipant(FastRArchiveParticipant(dist)) diff --git a/mx.fastr/suite.py b/mx.fastr/suite.py index 5d1379f055..da713a0824 100644 --- a/mx.fastr/suite.py +++ b/mx.fastr/suite.py @@ -261,22 +261,19 @@ suite = { "com.oracle.truffle.r.release" : { "sourceDirs" : ["src"], - "dependencies" : ["com.oracle.truffle.r.engine", "com.oracle.truffle.r.runtime.ffi", "com.oracle.truffle.r.native"], + "dependencies" : ["com.oracle.truffle.r.native.recommended"], "class" : "FastRReleaseProject", "output" : "com.oracle.truffle.r.release" }, "com.oracle.truffle.r.native.recommended" : { - "sourceDirs" : [], - # these dependencies ensure that all distributions are built - # before the nested mx that does the CMD INSTALL runs "dependencies" : [ - "com.oracle.truffle.r.release", - "com.oracle.truffle.r.test", - "com.oracle.truffle.r.test.native" + "com.oracle.truffle.r.native", + "com.oracle.truffle.r.engine", + "com.oracle.truffle.r.runtime.ffi" ], + "class" : "FastRNativeRecommendedProject", "native" : "true", - "output" : "com.oracle.truffle.r.native.recommended", "workingSets" : "FastR", }, -- GitLab