diff options
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Dependencies.md | 8 | ||||
-rw-r--r-- | docs/markdown/snippets/coarray.md | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md index 259f09e..608f3b2 100644 --- a/docs/markdown/Dependencies.md +++ b/docs/markdown/Dependencies.md @@ -255,6 +255,14 @@ libraries that have been compiled for single-threaded use instead. `method` may be `auto`, `config-tool`, `pkg-config`, `cmake` or `extraframework`. +## Fortran Coarrays + +As of 0.50.0 Coarrays are a Fortran language intrinsic feature, enabled by +`dependency('coarray')`. + +GCC will use OpenCoarrays if present to implement coarrays, while Intel and NAG +use internal coarray support. + ## GL This finds the OpenGL library in a way appropriate to the platform. diff --git a/docs/markdown/snippets/coarray.md b/docs/markdown/snippets/coarray.md new file mode 100644 index 0000000..961dce4 --- /dev/null +++ b/docs/markdown/snippets/coarray.md @@ -0,0 +1,3 @@ +## Fortran Coarray + +Fortran 2008 / 2018 coarray support was added via `dependency('coarray')` |