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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ You can pass additional options to CMake to customize the build.
125
125
Important options are
126
126
127
127
-`-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. If not provided, this defaults to `stdlib_install` in the `stdlib` directory.
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).
129
129
-`-DCMAKE_MAXIMUM_RANK` the maximum array rank procedures should be generated for.
130
130
The default value is chosen as 4.
131
131
The maximum is 15 for Fortran 2003 compliant compilers, otherwise 7 for compilers not supporting Fortran 2003 completely yet.
@@ -153,7 +153,7 @@ cmake --build build --target test
153
153
154
154
Please report failing tests on our [issue tracker](https://github.com/fortran-lang/stdlib/issues/new/choose) including details of the compiler used, the operating system and platform architecture.
155
155
156
-
To install the project to the declared prefix (by default `stdlib_install` in the `stdlib` directory), run
156
+
To install the project to the declared prefix run
157
157
158
158
```sh
159
159
cmake --install build
@@ -196,10 +196,10 @@ target_link_libraries(
196
196
```
197
197
198
198
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``.
200
200
201
201
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.
202
-
The usual install location of the pc-file is ``$PREFIX/lib/pkgconfig`` (by default, `stdlib_install/lib/pkgconfig` in the `stdlib` directory).
202
+
The usual install location of the pc-file is ``$PREFIX/lib/pkgconfig``.
203
203
In make you can obtain the required compile and link arguments with
0 commit comments