diff options
author | José Fonseca <jose.r.fonseca@gmail.com> | 2011-08-29 13:21:24 +0100 |
---|---|---|
committer | José Fonseca <jose.r.fonseca@gmail.com> | 2011-08-30 09:42:01 +0100 |
commit | 191428ccb86af462a8872da6937ab004c5691745 (patch) | |
tree | 967c9325f8de131cac8c198a3540c1bc842f9a44 /scons | |
parent | f5cf4ec90db3fd69d54375fbe663f54a22dfebc0 (diff) |
scons: Prefer x86_64-w64-mingw32- prefix.
This allows to use mingw-w64 binaries on debian systems which already
include a (typically incomplete) 64 cross compiler.
Diffstat (limited to 'scons')
-rw-r--r-- | scons/crossmingw.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scons/crossmingw.py b/scons/crossmingw.py index 4a695a440d6..949fc4fb1dc 100644 --- a/scons/crossmingw.py +++ b/scons/crossmingw.py @@ -57,10 +57,10 @@ prefixes32 = SCons.Util.Split(""" i686-w64-mingw32- """) prefixes64 = SCons.Util.Split(""" + x86_64-w64-mingw32- amd64-mingw32- amd64-mingw32msvc- amd64-pc-mingw32- - x86_64-w64-mingw32- """) def find(env): |