From e0b211d07c60d7ae8819c5ce6f00c96f2393cb8a Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Fri, 11 Jun 2010 18:43:58 -0700 Subject: scons: Disable i965g build if using MSVC. i965g uses C99 constructs that are not supported by MSVC. --- src/gallium/drivers/i965/SConscript | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/gallium/drivers/i965') diff --git a/src/gallium/drivers/i965/SConscript b/src/gallium/drivers/i965/SConscript index 019af682f6..119f914a16 100644 --- a/src/gallium/drivers/i965/SConscript +++ b/src/gallium/drivers/i965/SConscript @@ -2,6 +2,10 @@ Import('*') env = env.Clone() +if msvc: + print 'warning: not building i965g' + Return(); + i965 = env.ConvenienceLibrary( target = 'i965', source = [ -- cgit v1.2.3