You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/advanced.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ Add a configuration step before compiling the code
123
123
124
124
It is often the case that a configuration step is needed before compiling a code with ``make``.
125
125
To address this kind of projects, ReFrame aims to offer specific abstractions for "configure-make"-style build systems.
126
-
Currently, it supports only `CMake <https://cmake.org/>`__-based projects through its:class:`CMake <reframe.core.buildsystems.CMake>` build system.
126
+
It supports `CMake-based<https://cmake.org/>`__ projects through the:class:`CMake <reframe.core.buildsystems.CMake>` build system, as well as `Autotools-based <https://www.gnu.org/software/automake/>`__ projects through the :class:`Autotools <reframe.core.buildsystems.Autotools>` build system.
127
127
128
128
For other build systems, you can achieve the same effect using the :class:`Make <reframe.core.buildsystems.Make>` build system and the :attr:`prebuild_cmd <reframe.core.pipeline.RegressionTest.prebuild_cmd>` for performing the configuration step.
129
129
The following code snippet will configure a code with ``./custom_configure`` before invoking ``make``:
0 commit comments