aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-02-13 14:09:18 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2019-02-13 21:09:18 +0200
commitebfb09f5d64b8dbb9d10ae57f71a1d7be7fd9137 (patch)
tree70bf292ef9df5c94a2a34f0202a020315802446a /docs
parentdf0b734a17c15c3fb202e27b307f78e7f143c18b (diff)
downloadmeson-ebfb09f5d64b8dbb9d10ae57f71a1d7be7fd9137.zip
meson-ebfb09f5d64b8dbb9d10ae57f71a1d7be7fd9137.tar.gz
meson-ebfb09f5d64b8dbb9d10ae57f71a1d7be7fd9137.tar.bz2
Fortran 2008/2018 Coarray support
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Dependencies.md8
-rw-r--r--docs/markdown/snippets/coarray.md3
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')`