Skip to content

Commit

Permalink
Use {i686,x86_64}-w64-mingw32 triples
Browse files Browse the repository at this point in the history
Test: ./toolchain/binutils/build.py  --arch arm --host win
Test: ./toolchain/binutils/build.py  --arch arm --host win64
Change-Id: I0a47faa82c9690acf2ea3e50f8bcb812fdbc6fc9
  • Loading branch information
rprichard committed Jan 24, 2018
1 parent 93c5619 commit 6fa214b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ def configure(arch, host, install_dir, src_dir):
configure_host = {
'darwin': 'x86_64-apple-darwin',
'linux': 'x86_64-linux-gnu',
'win': 'i586-pc-mingw32msvc',
'win64': 'x86_64-pc-mingw32msvc',
'win': 'i686-w64-mingw32',
'win64': 'x86_64-w64-mingw32',
}[host]

sysroot = ndk.paths.sysroot_path(ndk.abis.arch_to_toolchain(arch))
Expand Down

0 comments on commit 6fa214b

Please sign in to comment.