rust/src
bors 02acf0917f Auto merge of #33211 - alexcrichton:android-back-in-time, r=nagisa
std: Add compatibility with android-9

The Gecko folks currently use Android API level 9 for their builds, so they're
requesting that we move back our minimum supported API level from 18 to 9. Turns
out, ABI-wise at least, there's not that many changes we need to take care of.
The `ftruncate64` API appeared in android-12 and the `log2` and `log2f` APIs
appeared in android-18. We can have a simple shim for `ftruncate64` which falls
back on `ftruncate` and the `log2` function can be approximated with just
`ln(f) / ln(2)`.

This should at least get the standard library building on API level 9, although
the tests aren't quite happening there just yet. As we seem to be growing a
number of Android compatibility shims, they're now centralized in a common
`sys::android` module.
2016-04-28 10:17:44 -07:00
..
bootstrap Auto merge of #33092 - alexcrichton:rustbuild-docs, r=brson 2016-04-23 05:36:28 -07:00
build_helper whoops 2016-04-04 21:14:15 +10:00
compiler-rt@57315f7e07 update compiler-rt submodule 2016-03-15 22:32:38 -05:00
doc Rollup merge of #33234 - TomasHubelbauer:TomasHubelbauer-patch-1, r=GuillaumeGomez 2016-04-28 09:51:44 -04:00
driver
etc Fix keyword parsing tests 2016-04-24 21:35:50 +03:00
grammar
jemalloc@aab1c0a0e0 std: Update jemalloc again to the 4.* track 2016-03-04 09:49:39 -08:00
liballoc Rollup merge of #32741 - tbu-:pr_remove_fixme_12808, r=bluss 2016-04-07 23:26:19 +05:30
liballoc_jemalloc Prefix jemalloc on DragonFly to prevent segfaults. 2016-04-02 18:40:59 +02:00
liballoc_system alloc_system: Handle failure properly 2016-04-15 10:02:21 -07:00
libarena std: Clean out deprecated APIs 2016-03-12 12:31:13 -08:00
libbacktrace
libcollections Implement append for b-trees. 2016-04-22 12:30:43 +02:00
libcollectionstest Implement append for b-trees. 2016-04-22 12:30:43 +02:00
libcore Rollup merge of #33056 - GuillaumeGomez:as_mut_ptr_example, r=steveklabnik 2016-04-28 09:51:43 -04:00
libcoretest std: Stabilize APIs for the 1.9 release 2016-04-11 08:57:53 -07:00
libflate std: Clean out deprecated APIs 2016-03-12 12:31:13 -08:00
libfmt_macros
libgetopts std: Stabilize APIs for the 1.9 release 2016-04-11 08:57:53 -07:00
libgraphviz sprinkle feature gates here and there 2016-03-22 22:02:47 -05:00
liblibc@7265c17d18 std: Fix linking against signal on Android 2016-04-04 21:54:59 -07:00
liblog
librand std: Clean out deprecated APIs 2016-03-12 12:31:13 -08:00
librbml std: Stabilize APIs for the 1.9 release 2016-04-11 08:57:53 -07:00
librustc Auto merge of #33257 - steveklabnik:rollup, r=steveklabnik 2016-04-28 07:59:02 -07:00
librustc_back Auto merge of #33115 - mbrubeck:vfp3-d16, r=nrc 2016-04-25 10:43:36 -07:00
librustc_bitflags rustbuild: Sync some Cargo.toml/lib.rs dependencies 2016-02-21 09:49:13 -08:00
librustc_borrowck thread tighter span for closures around 2016-04-24 18:10:57 +05:30
librustc_const_eval skip double negation in const eval 2016-04-26 14:09:05 +02:00
librustc_const_math don't report bitshift overflow twice 2016-04-26 14:10:07 +02:00
librustc_data_structures Use a BitVector instead of Vec<bool> for recording cleanup blocks 2016-04-03 14:58:34 +12:00
librustc_driver Auto merge of #33208 - nrc:save-json, r=pnkfelix 2016-04-28 05:47:57 -07:00
librustc_incremental Auto merge of #32908 - oli-obk:hygienic_derive_encodable, r=alexcrichton 2016-04-14 08:23:11 -07:00
librustc_lint std: Stabilize APIs for the 1.9 release 2016-04-11 08:57:53 -07:00
librustc_llvm Auto merge of #31709 - ranma42:target_feature-from-llvm, r=alexcrichton 2016-04-20 09:57:57 -07:00
librustc_metadata debugging, misc fixes 2016-04-20 10:14:16 +12:00
librustc_mir Fix translation of Assign/AssignOp as rvalues 2016-04-28 13:18:51 +12:00
librustc_passes update Cargo.toml for rustbuild 2016-04-27 10:47:46 +02:00
librustc_platform_intrinsics rustc_platform_intrinsics: remove unused rustc dependency. 2016-03-29 19:36:01 +03:00
librustc_plugin Remove the MacroVisitor pass. 2016-04-22 01:40:33 +02:00
librustc_privacy Always report PRIVATE_IN_PUBLIC violations as hard errors when 2016-04-16 21:27:20 +00:00
librustc_resolve syntax: Check paths in visibilities for type parameters 2016-04-24 20:59:44 +03:00
librustc_save_analysis Review changes and satisfy make tidy 2016-04-28 05:24:54 +12:00
librustc_trans Factor out function call checking to a helper method 2016-04-28 13:18:51 +12:00
librustc_typeck Auto merge of #32989 - GuillaumeGomez:e0393, r=Manishearth 2016-04-26 04:51:08 -07:00
librustc_unicode std: Stabilize APIs for the 1.9 release 2016-04-11 08:57:53 -07:00
librustdoc Auto merge of #33151 - ollie27:rustdoc_abi, r=alexcrichton 2016-04-27 23:16:41 -07:00
libserialize std: Stabilize APIs for the 1.9 release 2016-04-11 08:57:53 -07:00
libstd Auto merge of #33211 - alexcrichton:android-back-in-time, r=nagisa 2016-04-28 10:17:44 -07:00
libsyntax Rollup merge of #33218 - oli-obk:interned_str_cmp, r=nikomatsakis 2016-04-28 09:51:44 -04:00
libsyntax_ext Auto merge of #32791 - LeoTestard:feature-gate-clean, r=nikomatsakis 2016-04-27 18:35:29 -07:00
libterm term: undo conversion of user defined try!s 2016-03-22 22:03:19 -05:00
libtest Remove unused trait imports 2016-04-12 22:58:55 +09:00
llvm@751345228a Update llvm to 751345228a0ef03fd147394bb5104359b7a808be 2016-04-26 17:03:14 -07:00
rt Handle integer-extending for C ABI 2016-04-04 22:14:10 +02:00
rtstartup Revert "workarounds to make link guards work on windows" 2016-03-25 14:07:20 -04:00
rust-installer@c37d3747da
rustc rustc: update Cargo.lock 2016-04-24 19:38:49 -04:00
rustllvm Update llvm to 751345228a0ef03fd147394bb5104359b7a808be 2016-04-26 17:03:14 -07:00
test Auto merge of #33208 - nrc:save-json, r=pnkfelix 2016-04-28 05:47:57 -07:00
tools Auto merge of #32791 - LeoTestard:feature-gate-clean, r=nikomatsakis 2016-04-27 18:35:29 -07:00
stage0.txt mk: Bootstrap from stable instead of snapshots 2016-04-19 10:56:49 -07:00