diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-05-21 02:34:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 09:34:15 +0200 |
commit | 71b9e67b3c35d3f098a05a4ac9aac77b05fc6e06 (patch) | |
tree | 7774b14aa13a4f221afc2f58a717657245f5355d /lib | |
parent | 3dfb61116d1b8c467c06ebc6d57ec74ed819d850 (diff) | |
download | spack-71b9e67b3c35d3f098a05a4ac9aac77b05fc6e06.tar.gz spack-71b9e67b3c35d3f098a05a4ac9aac77b05fc6e06.tar.bz2 spack-71b9e67b3c35d3f098a05a4ac9aac77b05fc6e06.tar.xz spack-71b9e67b3c35d3f098a05a4ac9aac77b05fc6e06.zip |
Modification to R environment (#23623)
* Modification to R environment
This PR modifies how the R environmnet is presented, and fixes
installing the standalone Rmath library.
- The Rmath build and install methods are combined into one
- Set parallel=False when installing Rmath
- remove the run environment that set up variables for libraries and
headers that are not really needed, and pollute the environment.
* Add setup_run_environment back
- Add back the setup_run_environment with LD_LIBRARY_PATH and
PKG_CONFIG_PATH.
- Adjust documentation to reflect the current code.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/docs/module_file_support.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/spack/docs/module_file_support.rst b/lib/spack/docs/module_file_support.rst index 773f347ed6..d46ec3143d 100644 --- a/lib/spack/docs/module_file_support.rst +++ b/lib/spack/docs/module_file_support.rst @@ -130,9 +130,8 @@ list of environment modifications. to the corresponding environment variables: ================== ================================= - LIBRARY_PATH ``self.prefix/rlib/R/lib`` LD_LIBRARY_PATH ``self.prefix/rlib/R/lib`` - CPATH ``self.prefix/rlib/R/include`` + PKG_CONFIG_PATH ``self.prefix/rlib/pkgconfig`` ================== ================================= with the following snippet: |