]> git.lizzy.rs Git - rust.git/commit
Auto merge of #45991 - gnzlbg:fix_i586, r=alexcrichton
authorbors <bors@rust-lang.org>
Fri, 17 Nov 2017 05:18:45 +0000 (05:18 +0000)
committerbors <bors@rust-lang.org>
Fri, 17 Nov 2017 05:18:45 +0000 (05:18 +0000)
commit3bcb00dbc2edcdc498a9e60a68a14652162d1921
tree5c7e52ab03ad5ea7615c028fb23e1a574b032838
parent8fbb46c4a1751c1a5f50e65fa2601f05819ee1c4
parent5146663602933c66293ecdc19b9c4bb1a33c2c7e
Auto merge of #45991 - gnzlbg:fix_i586, r=alexcrichton

fix linking error on i586

Try to fix this linking error on i586 in cross:

https://travis-ci.org/japaric/cross/builds/302095949#L8670

The problem is that `std` is built in Ubuntu 16.04 and `cross` uses a linker from 12.04.

Currently this fix solves the problem for `i686-musl`  making it "supercompatible", this PR applies the fix to `i586` as well.

The cross PR is here: https://github.com/japaric/cross/pull/157