diff options
| author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-02-13 14:09:18 -0500 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-02-13 21:09:18 +0200 |
| commit | ebfb09f5d64b8dbb9d10ae57f71a1d7be7fd9137 (patch) | |
| tree | 70bf292ef9df5c94a2a34f0202a020315802446a /docs/markdown | |
| parent | df0b734a17c15c3fb202e27b307f78e7f143c18b (diff) | |
| download | meson-ebfb09f5d64b8dbb9d10ae57f71a1d7be7fd9137.tar.gz | |
Fortran 2008/2018 Coarray support
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 259f09e25..608f3b245 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 000000000..961dce42f --- /dev/null +++ b/docs/markdown/snippets/coarray.md @@ -0,0 +1,3 @@ +## Fortran Coarray + +Fortran 2008 / 2018 coarray support was added via `dependency('coarray')` |
