mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
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:
parent
00905dbf19
commit
9549e55f11
2 changed files with 2 additions and 2 deletions
|
|
@ -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':
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue