scons: Get x86-64<->x86 cross build of assembly files right.

This commit is contained in:
José Fonseca 2008-06-27 13:41:23 +09:00
parent 6106db4c5d
commit 05cfb4c4b8

View 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: