From 0427ba48e6e22be20f4c9cca526d4098f0af38ea Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 28 Sep 2018 10:01:49 -0700 Subject: dependencies/misc: Add openmp 5.0 preliminary support ICC 19 has openmp support, but it's 5.0 preliminary (rev 1, while rev 7 is current). It passes our tests though, so lets add it. Fixes: #4491 --- mesonbuild/dependencies/misc.py | 1 + 1 file changed, 1 insertion(+) (limited to 'mesonbuild/dependencies/misc.py') diff --git a/mesonbuild/dependencies/misc.py b/mesonbuild/dependencies/misc.py index f220a8e..1dab19c 100644 --- a/mesonbuild/dependencies/misc.py +++ b/mesonbuild/dependencies/misc.py @@ -235,6 +235,7 @@ class OpenMPDependency(ExternalDependency): # Map date of specification release (which is the macro value) to a version. VERSIONS = { '201811': '5.0', + '201611': '5.0-revision1', # This is supported by ICC 19.x '201511': '4.5', '201307': '4.0', '201107': '3.1', -- cgit v1.1