scons: Get x86-64<->x86 cross build of assembly files right.
authorJosé Fonseca <jrfonseca@tungstengraphics.com>
Fri, 27 Jun 2008 04:41:23 +0000 (13:41 +0900)
committerJosé Fonseca <jrfonseca@tungstengraphics.com>
Fri, 27 Jun 2008 04:41:23 +0000 (13:41 +0900)
scons/gallium.py

index 217a1d6..c4a5c65 100644 (file)
@@ -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: