scons: Disable build of assembly sources on Cygwin.
authorVinson Lee <vlee@freedesktop.org>
Fri, 28 Sep 2012 06:21:09 +0000 (23:21 -0700)
committerVinson Lee <vlee@freedesktop.org>
Sat, 29 Sep 2012 06:29:10 +0000 (23:29 -0700)
The assembly sources currently do not build on Cygwin.

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/mapi/glapi/SConscript
src/mesa/SConscript

index ad007a6f43615fc84deec102b2e58fc0a0b9c5b1..c336c2510ee52461bee6ec86c58fc1db0d5089c2 100644 (file)
@@ -48,7 +48,7 @@ for s in mapi_sources:
 #
 # Assembly sources
 #
-if env['gcc'] and env['platform'] not in ('darwin', 'windows'):
+if env['gcc'] and env['platform'] not in ('cygwin', 'darwin', 'windows'):
     GLAPI = '#src/mapi/glapi/'
 
     if env['machine'] == 'x86':
index dba75a26448e5350568969b45278ab6d5dcf6ef8..9819082177f981f3874689d4585f3d025b113401 100644 (file)
@@ -371,7 +371,7 @@ if env['gles']:
 #
 # Assembly sources
 #
-if env['gcc'] and env['platform'] not in ('darwin', 'windows'):
+if env['gcc'] and env['platform'] not in ('cygwin', 'darwin', 'windows'):
     if env['machine'] == 'x86':
         env.Append(CPPDEFINES = [
             'USE_X86_ASM',