Skip to content
Snippets Groups Projects
Commit 0c7355b3 authored by Mick Jordan's avatar Mick Jordan
Browse files

mx_fastr_dists: add doc comment

parent 38c2ee33
No related branches found
No related tags found
No related merge requests found
......@@ -264,6 +264,13 @@ class ReleaseBuildTask(mx.NativeBuildTask):
self._template(rscript_launcher, join(bin_dir, 'Rscript'), template_dict)
class FastRNativeRecommendedProject(mx.NativeProject):
'''
This finesses an ordering problem on installing the recommended R packages.
These must be installed by FastR using bin/R CMD INSTALL. That will invoke a
nested 'mx R' invocation which requires the FASTR distribution to be available.
However, this dependency cannt be specified in the suite.py file so we achieve
it here by ensuring that it is built prior to the native.recommended project.
'''
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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment