meson: disable graw tests on mingw

I can't figure out why symbols are being exposed that shouldn't.

v2: - change comment to FIXME

Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
Acked-by: Kristian H. Kristensen <hoegsberg@google.com>
This commit is contained in:
Dylan Baker 2018-05-22 17:22:45 -07:00
parent 56db696875
commit b6b59813c3
1 changed files with 6 additions and 1 deletions

View File

@ -25,4 +25,9 @@ endif
if with_gallium_softpipe
subdir('unit')
endif
subdir('graw')
if host_machine.system() != 'windows' or cpp.get_id() != 'gcc'
# FIXME: This has linking errors I can't figure out with MinGW. works fine
# with MSVC, works fine with GCC on Linux.
subdir('graw')
endif