Skip openmp test for windows clang

This can probably be made to work, but the special steps needed aren't
clear.
pull/4573/head
Jon Turney 6 years ago
parent 65160a969e
commit 272623c5a3
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
  1. 3
      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

Loading…
Cancel
Save