Skip to content

Commit 4faba43

Browse files
committed
Updating fpm README section
1 parent 9a21576 commit 4faba43

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,15 @@ $ cd fortran-error-handler
3434
$ fpm build --flag="-fbackslash"
3535
```
3636

37-
A static library (e.g. `libfeh.a` on Linux) and `.mod` files will be generated in the `build` directory for you to use. An example executable (using `example/example_usage.f90`) will also be generated. Running `fpm test` will run tests (using `tests/run_tests.f90`) for the framework. Fpm can easily be installed using Conda: `conda install -c conda-forge fpm`.
37+
A static library (e.g. `libfeh.a` on Linux) and `.mod` files will be generated in the `build` directory for you to use. An example executable (using `example/example_usage.f90`) will also be generated. Running `fpm test` will run tests (using `tests/run_tests.f90`) for the framework. The `-fbackslash` flag is a GFortran flag to enable coloured terminal output, and is only needed if the `bashColors` option is `.true.` (default). The equivalent `ifort` flag is `/assume:bscc`.
38+
39+
You can also get fpm to install the Fortran Error Handler locally (e.g. to `/home/<user>/.local`):
40+
41+
```bash
42+
$ fpm install --flag="-fbackslash"
43+
```
44+
45+
Fpm can easily be installed using Conda: `conda install -c conda-forge fpm`.
3846

3947
### Grab the files
4048

0 commit comments

Comments
 (0)