aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2018-11-29 12:13:08 +0000
committerJon Turney <jon.turney@dronecode.org.uk>2018-12-09 20:40:28 +0000
commit272623c5a344d503930e1f8b0807611e1a3eff9f (patch)
treeb13ef310985acf71f8d28e60c19f97d9a753cf1f
parent65160a969e4ec078a8ec740160b3bfc96055bc8c (diff)
downloadmeson-272623c5a344d503930e1f8b0807611e1a3eff9f.zip
meson-272623c5a344d503930e1f8b0807611e1a3eff9f.tar.gz
meson-272623c5a344d503930e1f8b0807611e1a3eff9f.tar.bz2
Skip openmp test for windows clang
This can probably be made to work, but the special steps needed aren't clear.
-rw-r--r--test cases/common/190 openmp/meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/test cases/common/190 openmp/meson.build b/test cases/common/190 openmp/meson.build
index 018bf24..f4652db 100644
--- a/test cases/common/190 openmp/meson.build
+++ b/test cases/common/190 openmp/meson.build
@@ -13,6 +13,9 @@ endif
if cc.get_id() == 'clang-cl'
error('MESON_SKIP_TEST clang-cl does not support OpenMP.')
endif
+if cc.get_id() == 'clang' and host_machine.system() == 'windows'
+ error('MESON_SKIP_TEST Windows clang does not support OpenMP.')
+endif
if host_machine.system() == 'darwin'
error('MESON_SKIP_TEST macOS does not support OpenMP.')
endif