summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-04-26 01:14:32 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-04-26 01:14:52 +0900
commit658f5e721316f1983ae39b6b94b992baca0e2bc2 (patch)
tree9e12a0836d6573e47c1f0dbf9c592f279a6eea46 /src
parent1aedbf9efe4d1cf45be3c27fc3a0eb4a69a1b1b9 (diff)
scons: A few fixes for building mesa on windows.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/SConscript18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/mesa/SConscript b/src/mesa/SConscript
index 80fbdb41f0..6b99dacf2a 100644
--- a/src/mesa/SConscript
+++ b/src/mesa/SConscript
@@ -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: