Mesa (master): scons: Search only for mingw-w64 cross-compilers.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Fri Jun 6 18:39:09 UTC 2014


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

Author: José Fonseca <jfonseca at vmware.com>
Date:   Fri Jun  6 13:13:05 2014 +0100

scons: Search only for mingw-w64 cross-compilers.

Some distros still ship the non-mingw-w64 cross-compilers, but they are
can't build Mesa properly, as Jakob pointed out.

---

 scons/crossmingw.py |   17 ++---------------
 1 file changed, 2 insertions(+), 15 deletions(-)

diff --git a/scons/crossmingw.py b/scons/crossmingw.py
index 1287e0e..3412945 100644
--- a/scons/crossmingw.py
+++ b/scons/crossmingw.py
@@ -41,26 +41,13 @@ import SCons.Builder
 import SCons.Tool
 import SCons.Util
 
-# This is what we search for to find mingw:
+# These are the mingw toolchain prefixes we search for:
+# (We only search for the mingw-w64 toolchain, and not the mingw.org one.)
 prefixes32 = SCons.Util.Split("""
-    mingw32-
-    mingw32msvc-
-    i386-mingw32-
-    i486-mingw32-
-    i586-mingw32-
-    i686-mingw32-
-    i386-mingw32msvc-
-    i486-mingw32msvc-
-    i586-mingw32msvc-
-    i686-mingw32msvc-
-    i686-pc-mingw32-
     i686-w64-mingw32-
 """)
 prefixes64 = SCons.Util.Split("""
     x86_64-w64-mingw32-
-    amd64-mingw32-
-    amd64-mingw32msvc-
-    amd64-pc-mingw32-
 """)
 
 def find(env):




More information about the mesa-commit mailing list