aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLaurence Kedward <laurence.kedward@bristol.ac.uk>2021-11-02 09:08:34 +0000
committerGitHub <noreply@github.com>2021-11-02 09:08:34 +0000
commit02fdf8dde8877cf2ac738fed8d20561da16cec1f (patch)
treeae191f46244238ef584742bfb22dd674d10abd3e /README.md
parent7247d5a2d07ff40b9e5e6ac51d8a6be91b23bfd8 (diff)
parent9622e5988ac879de5de35af69a188084ca01da8a (diff)
downloadfpm-02fdf8dde8877cf2ac738fed8d20561da16cec1f.tar.gz
fpm-02fdf8dde8877cf2ac738fed8d20561da16cec1f.zip
Merge pull request #598 from fortran-lang/update-readme
Update README.md compiler, archiver, & link flags
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index 70d1d89..0613b3d 100644
--- a/README.md
+++ b/README.md
@@ -159,5 +159,15 @@ To automatically bootstrap using this appoach run the install script
./install.sh
```
-You can set your Fortran compiler and the compiler flags with the ``FC`` and ``FFLAGS``
-environment variables.
+The table below lists the environment variables that control `fpm`'s choice of compilers,
+compiler flags, archiver locations, and link flags, each of which can be overridden by
+passing `fpm` flags also shown in the table.
+
+| Environment Variable | Defines | Overridden by |
+| :------------------- | :-------------------- | :------------- |
+| `FPM_FC` | Fortran compiler path | `--compiler` |
+| `FPM_CC` | C compiler path | `--c-compiler` |
+| `FPM_FFLAGS` | Fortran compiler flags| `--flag` |
+| `FPM_CFLAGS` | C compiler flags | `--c-flag` |
+| `FPM_AR` | Archiver path | `--archiver` |
+| `FPM_LDFLAGS` | Link flags | `--link-flag` |