summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scons/gallium.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/scons/gallium.py b/scons/gallium.py
index 217a1d61d3..c4a5c65be4 100644
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -286,6 +286,13 @@ def generate(env):
env.Append(CFLAGS = cflags)
env.Append(CXXFLAGS = cflags)
+ # Assembler options
+ if gcc:
+ if env['machine'] == 'x86':
+ env.Append(ASFLAGS = ['-m32'])
+ if env['machine'] == 'x86_64':
+ env.Append(ASFLAGS = ['-m64'])
+
# Linker options
linkflags = []
if gcc: