meson: disable graw tests on mingw
authorDylan Baker <dylan@pnwbakers.com>
Wed, 23 May 2018 00:22:45 +0000 (17:22 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Thu, 10 Oct 2019 23:33:04 +0000 (16:33 -0700)
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>
src/gallium/tests/meson.build

index 15b9f5496477e5dcd0cb0281f4656ed5fbf7c539..e7fdf5aa39f388990b4c3e35c0596a144de60cd6 100644 (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