]> git.lizzy.rs Git - rust.git/commit
Auto merge of #32206 - alexcrichton:fix-windows-rustbuild, r=brson
authorbors <bors@rust-lang.org>
Tue, 15 Mar 2016 04:09:37 +0000 (21:09 -0700)
committerbors <bors@rust-lang.org>
Tue, 15 Mar 2016 04:09:37 +0000 (21:09 -0700)
commit34b95a3c6a2a56d76bbd8ae19f318c03a2e5041d
tree06f09daf58ca14918105191684d3e4939afd0950
parent9ca75619dc80f71f356cab0cdd11cc959e4c24db
parent158b854fb73dab7680f9554c2bbde2f821d2630e
Auto merge of #32206 - alexcrichton:fix-windows-rustbuild, r=brson

Fix Windows rustbuild

These commits fix the rustbuild Windows bots, namely:

* The 32-bit build of LLVM was failing because libraries weren't being linked. This was in turn caused by the build script for `rustc_llvm` erroneously detecting that it was cross compiling when it actually wasn't.
* Tools of the build were compiled against the wrong libraries, so running them would fail on Windows as rpath didn't exist and `PATH` was wrong.
* Some linkchecker fixes for Windows paths had to be applied as well.