Skip to content

Commit

Permalink
Disable cygwin and lld platforms.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpakkane committed Feb 18, 2019
1 parent 432379c commit 2675af2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test cases/common/211 version file/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ project('linker script', 'c')

cc = meson.get_compiler('c')

if build_machine.system() == 'cygwin'
error('MESON_SKIP_TEST does not work on cygwin for some reason.')
endif

if build_machine.system() == 'windows' and cc.get_id() == 'clang'
error('MESON_SKIP_TEST uses lld which is not supported yet. Patches welcome.')
endif


# Static map file
if cc.get_id() == 'msvc'
suffix = '.sym'
Expand Down

0 comments on commit 2675af2

Please sign in to comment.