Skip to content

Commit 12da563

Browse files
authored
Merge pull request #501 from gareth-nx/pr/doc_updates
Minor updates to README.md
2 parents eae0027 + b22f2d1 commit 12da563

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ You can pass additional options to CMake to customize the build.
125125
Important options are
126126

127127
- `-G Ninja` to use the Ninja backend instead of the default Make backend. Other build backends are available with a similar syntax.
128-
- `-DCMAKE_INSTALL_PREFIX` is used to provide the install location for the library.
128+
- `-DCMAKE_INSTALL_PREFIX` is used to provide the install location for the library. If not provided the defaults will depend on your operating system, [see here](https://cmake.org/cmake/help/latest/variable/CMAKE_INSTALL_PREFIX.html).
129129
- `-DCMAKE_MAXIMUM_RANK` the maximum array rank procedures should be generated for.
130130
The default value is chosen as 4.
131131
The maximum is 15 for Fortran 2003 compliant compilers, otherwise 7 for compilers not supporting Fortran 2003 completely yet.
@@ -170,7 +170,7 @@ Alternatively, you can build using provided Makefiles:
170170
make -f Makefile.manual
171171
```
172172

173-
You can limit the maximum rank by setting ``-DMAXRANK=<num>`` in the ``FYPPFLAGS`` environment variable:
173+
You can limit the maximum rank by setting ``-DMAXRANK=<num>`` in the ``FYPPFLAGS`` environment variable (which can reduce the compilation time):
174174

175175
```sh
176176
make -f Makefile.manual FYPPFLAGS=-DMAXRANK=4
@@ -196,7 +196,7 @@ target_link_libraries(
196196
```
197197

198198
To make the installed stdlib project discoverable add the stdlib directory to the ``CMAKE_PREFIX_PATH``.
199-
The usual install localtion of the package files is ``$PREFIX/lib/cmake/fortran_stdlib``.
199+
The usual install location of the package files is ``$PREFIX/lib/cmake/fortran_stdlib``.
200200

201201
For non-CMake build systems (like make) you can use the exported pkg-config file by setting ``PKG_CONFIG_PATH`` to include the directory containing the exported pc-file.
202202
The usual install location of the pc-file is ``$PREFIX/lib/pkgconfig``.

0 commit comments

Comments
 (0)