mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-21 20:40:36 +02:00
scons: Don't get fooled by 32bit python on a 64bit windows.
This commit is contained in:
parent
9f9d6481de
commit
590c2ee568
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ def generate(env):
|
|||
# Determine whether we are cross compiling; in particular, whether we need
|
||||
# to compile code generators with a different compiler as the target code.
|
||||
host_platform = _platform.system().lower()
|
||||
host_machine = os.environ.get('PROCESSOR_ARCHITECTURE', _platform.machine())
|
||||
host_machine = os.environ.get('PROCESSOR_ARCHITEW6432', os.environ.get('PROCESSOR_ARCHITECTURE', _platform.machine()))
|
||||
host_machine = {
|
||||
'x86': 'x86',
|
||||
'i386': 'x86',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue