meson.build 574 B

123456789101112131415
  1. project('dep file gen', 'c')
  2. cc_id = meson.get_compiler('c').get_id()
  3. cc_ver = meson.get_compiler('c').version()
  4. if cc_id == 'intel' or (cc_id == 'lcc' and cc_ver.version_compare('<=1.23.08'))
  5. # ICC and LCC <= 1.23.08 do not escape spaces in paths in the dependency file, so Ninja
  6. # (correctly) thinks that the rule has multiple outputs and errors out:
  7. # 'depfile has multiple output paths'
  8. error('MESON_SKIP_TEST: Skipping test because your compiler is known to generate broken dependency files')
  9. endif
  10. e = executable('main file', 'main .c')
  11. test('test it', e)