Uh oh!
There was an error while loading. Please reload this page.
std: Use memalign, not posix_memalign, on Android - #33832
Conversation
rust-highfive
commented
May 24, 2016
(rust_highfive has picked a reviewer for you, use r? to override) |
luqmana
commented
May 24, 2016
@bors r+ rollup |
bors
commented
May 24, 2016
📌 Commit 6584fb4 has been approved by |
GuillaumeGomez
commented
May 24, 2016
@bors: r- Some tests failed. |
nagisa
commented
May 24, 2016
This is certainly a dangerous commit to put into rollup. @bors rollup- |
nagisa
commented
May 24, 2016
@bors r+ rollup- Test failure in the rollup seems to have nothing to do with this change. |
bors
commented
May 24, 2016
📌 Commit 6584fb4 has been approved by |
nagisa
commented
May 24, 2016
@bors r=luqmana Err. |
bors
commented
May 24, 2016
💡 This pull request was already approved, no need to approve it again.
|
bors
commented
May 24, 2016
📌 Commit 6584fb4 has been approved by |
alexcrichton
commented
May 24, 2016
Nominating for beta based on this comment: #33848 (comment) |
We've gotten requests to move our Android support as far back as API level 9 where unfortunately the `posix_memalign` API wasn't implemented yet. Thankfully, however, the `memalign` API was and it appears to be usable with `free` on the Android platform (see comments included in commit). This should help fix some of the last few test failures when compiling against API level 9.
6584fb4 to
33dfd0fComparealexcrichton
commented
May 24, 2016
nikomatsakis
commented
May 26, 2016
Unclear that we are the right team to make this call, but the compiler team approves backporting to beta. :) Ordinarily we wouldn't backport this change, but since it helps with the bot infrastructure, seems fine. |
alexcrichton
commented
May 26, 2016
Oh right, yes sorry I intended to discuss this with the tools team this coming triage meeting. |
…qmana std: Use memalign, not posix_memalign, on Android We've gotten requests to move our Android support as far back as API level 9 where unfortunately the `posix_memalign` API wasn't implemented yet. Thankfully, however, the `memalign` API was and it appears to be usable with `free` on the Android platform (see comments included in commit). This should help fix some of the last few test failures when compiling against API level 9.
We've gotten requests to move our Android support as far back as API level 9
where unfortunately the
posix_memalignAPI wasn't implemented yet. Thankfully,however, the
memalignAPI was and it appears to be usable withfreeon theAndroid platform (see comments included in commit).
This should help fix some of the last few test failures when compiling against
API level 9.