scons: Disable build of assembly sources on Cygwin.

The assembly sources currently do not build on Cygwin.

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Vinson Lee 2012-09-27 23:21:09 -07:00
parent 00905dbf19
commit 9549e55f11
2 changed files with 2 additions and 2 deletions

View 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':

View 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',