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
This commit is contained in:
parent
301df38816
commit
0427ba48e6
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue