Make spack_cc, spack_cxx, spack_f77, spack_fc available in build env.
- Add for convenience for packages that need to refer to these. - Added an example in the documentation.
This commit is contained in:
parent
240ada5775
commit
1ee90a6fe7
@ -2137,6 +2137,15 @@ Filtering functions
|
|||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
||||||
|
#. Filtering a Makefile to force it to use Spack's compiler wrappers:
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
filter_file(r'^CC\s*=.*', spack_cc, 'Makefile')
|
||||||
|
filter_file(r'^CXX\s*=.*', spack_cxx, 'Makefile')
|
||||||
|
filter_file(r'^F77\s*=.*', spack_f77, 'Makefile')
|
||||||
|
filter_file(r'^FC\s*=.*', spack_fc, 'Makefile')
|
||||||
|
|
||||||
#. Replacing ``#!/usr/bin/perl`` with ``#!/usr/bin/env perl`` in ``bib2xhtml``:
|
#. Replacing ``#!/usr/bin/perl`` with ``#!/usr/bin/env perl`` in ``bib2xhtml``:
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
@ -214,6 +214,13 @@ def set_module_variables_for_package(pkg, m):
|
|||||||
m.std_cmake_args.append('-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=FALSE')
|
m.std_cmake_args.append('-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=FALSE')
|
||||||
m.std_cmake_args.append('-DCMAKE_INSTALL_RPATH=%s' % ":".join(get_rpaths(pkg)))
|
m.std_cmake_args.append('-DCMAKE_INSTALL_RPATH=%s' % ":".join(get_rpaths(pkg)))
|
||||||
|
|
||||||
|
# Put spack compiler paths in module scope.
|
||||||
|
link_dir = spack.build_env_path
|
||||||
|
m.spack_cc = join_path(link_dir, pkg.compiler.link_paths['cc'])
|
||||||
|
m.spack_cxx = join_path(link_dir, pkg.compiler.link_paths['cxx'])
|
||||||
|
m.spack_f77 = join_path(link_dir, pkg.compiler.link_paths['f77'])
|
||||||
|
m.spack_f90 = join_path(link_dir, pkg.compiler.link_paths['fc'])
|
||||||
|
|
||||||
# Emulate some shell commands for convenience
|
# Emulate some shell commands for convenience
|
||||||
m.pwd = os.getcwd
|
m.pwd = os.getcwd
|
||||||
m.cd = os.chdir
|
m.cd = os.chdir
|
||||||
|
Loading…
Reference in New Issue
Block a user