diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-11-09 10:25:25 -0800 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-11-10 20:26:45 +0200 |
commit | 34c1edda87180b18b44eae56eeef0618081ced43 (patch) | |
tree | bade8f8184d6f13ae6b6d08b66af6241bcba7ed8 | |
parent | 8aeb96777333f83c950a8d654c38a4c412235cf8 (diff) | |
download | meson-34c1edda87180b18b44eae56eeef0618081ced43.zip meson-34c1edda87180b18b44eae56eeef0618081ced43.tar.gz meson-34c1edda87180b18b44eae56eeef0618081ced43.tar.bz2 |
dependencies: Add openmp 5.0
Since it's been released and we know what the version it will return is.
-rw-r--r-- | mesonbuild/dependencies/misc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/dependencies/misc.py b/mesonbuild/dependencies/misc.py index cc012ac..f220a8e 100644 --- a/mesonbuild/dependencies/misc.py +++ b/mesonbuild/dependencies/misc.py @@ -234,6 +234,7 @@ class MPIDependency(ExternalDependency): class OpenMPDependency(ExternalDependency): # Map date of specification release (which is the macro value) to a version. VERSIONS = { + '201811': '5.0', '201511': '4.5', '201307': '4.0', '201107': '3.1', |