Mesa (master): scons: Don't get fooled by 32bit python on a 64bit windows.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Wed Feb 16 18:20:17 UTC 2011


Module: Mesa
Branch: master
Commit: 590c2ee5681d1224befa334ed15c70fa4a0d007a
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=590c2ee5681d1224befa334ed15c70fa4a0d007a

Author: José Fonseca <jfonseca at vmware.com>
Date:   Tue Feb 15 17:01:20 2011 +0000

scons: Don't get fooled by 32bit python on a 64bit windows.

---

 scons/gallium.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scons/gallium.py b/scons/gallium.py
index 24319a0..76bfde1 100755
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -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',




More information about the mesa-commit mailing list