]> git.lizzy.rs Git - rust.git/commit
auto merge of #8832 : alexcrichton/rust/fix-libuv-build, r=pcwalton
authorbors <bors@rust-lang.org>
Thu, 29 Aug 2013 00:35:35 +0000 (17:35 -0700)
committerbors <bors@rust-lang.org>
Thu, 29 Aug 2013 00:35:35 +0000 (17:35 -0700)
commit26e925a1f01f830f6ca1ff377461a6fab30dc9e6
tree8e75034aa10b0c93dc9b6a8fc55829d083139885
parent7971c46c44420f2b72086ff0b8726b1ada308bcc
parent188a9dd210e5cbc1db6a31992dc298d143d80526
auto merge of #8832 : alexcrichton/rust/fix-libuv-build, r=pcwalton

It turns out that gyp (libuv's new build system) wants x64 for a 64-bit x86
architecture and ia32 for a 32-bit architecture, so this performs the relevant
mapping and then invokes libuv's configure script with the appropriate target
architecture.

This can be verified by running make with VERBOSE=1 and seeing that beforehand
on a 64-bit build libuv was passed "-arch i386" and now it's passed
"-arch x86_64"

Closes #8826