summaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/tests/meson.build7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/tests/meson.build b/src/gallium/tests/meson.build
index 15b9f549647..e7fdf5aa39f 100644
--- a/src/gallium/tests/meson.build
+++ b/src/gallium/tests/meson.build
@@ -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