diff options
author | Dylan Baker <[email protected]> | 2018-05-22 17:22:45 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-10-10 16:33:04 -0700 |
commit | b6b59813c3b17633a9f2bdfb82a925d6b82751f2 (patch) | |
tree | 3eb06480cdf8b01aaabdb3ae03194226e1e50401 /src/gallium | |
parent | 56db696875dbac9b5604319bf247da3aaf40ee11 (diff) |
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 <[email protected]>
Acked-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/tests/meson.build | 7 |
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 |