mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 06:30:11 +01:00
scons: A few fixes for building mesa on windows.
This commit is contained in:
parent
1aedbf9efe
commit
658f5e7213
2 changed files with 14 additions and 10 deletions
|
|
@ -108,12 +108,6 @@ env.Append(CPPPATH = [
|
|||
|
||||
# x86 assembly
|
||||
if x86:
|
||||
env.Append(CPPDEFINES = [
|
||||
'USE_X86_ASM',
|
||||
'USE_MMX_ASM',
|
||||
'USE_3DNOW_ASM',
|
||||
'USE_SSE_ASM',
|
||||
])
|
||||
if gcc:
|
||||
env.Append(CFLAGS = '-m32')
|
||||
env.Append(CXXFLAGS = '-m32')
|
||||
|
|
|
|||
|
|
@ -12,9 +12,19 @@ env.Append(CPPPATH = [
|
|||
'#/src/mesa/main',
|
||||
])
|
||||
|
||||
env.Append(CFLAGS = [
|
||||
'-std=c99',
|
||||
])
|
||||
if gcc:
|
||||
env.Append(CFLAGS = [
|
||||
'-std=c99',
|
||||
])
|
||||
|
||||
# x86 assembly
|
||||
if x86 and gcc:
|
||||
env.Append(CPPDEFINES = [
|
||||
'USE_X86_ASM',
|
||||
'USE_MMX_ASM',
|
||||
'USE_3DNOW_ASM',
|
||||
'USE_SSE_ASM',
|
||||
])
|
||||
|
||||
|
||||
#######################################################################
|
||||
|
|
@ -269,7 +279,7 @@ SPARC_API = [
|
|||
'sparc/glapi_sparc.S',
|
||||
]
|
||||
|
||||
if x86:
|
||||
if x86 and gcc:
|
||||
ASM_SOURCES = ASM_C_SOURCES + X86_SOURCES
|
||||
API_SOURCES = X86_API
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue