- Nov 20, 2018
- Oct 30, 2018
-
-
Jonathan A. Kollasch authored
-
- Aug 01, 2018
-
-
Alex Crichton authored
Looks like Travis has moved on from our old images, so we're forced to update.
-
- Jul 29, 2018
-
-
Linus Färnstrand authored
-
- Jul 18, 2018
-
-
Pascal Bach authored
-
Pascal Bach authored
-
- Jul 17, 2018
-
-
Pascal Bach authored
-
- Jul 12, 2018
-
-
Amanieu d'Antras authored
-
- Jun 01, 2018
-
-
Bryant Mairs authored
-
- Apr 10, 2018
-
-
Mike Hommey authored
`pthread_mutex_t` varies across architectures, in several ways: - endianness alters the ordering of bytes, since the contents of the struct are larger than 8-bit. - its length varies. - the location of the mutex kind (`PTHREAD_MUTEX_RECURSIVE`, `PTHREAD_MUTEX_ERRORCHECK` or `PTHREAD_MUTEX_ADAPTIVE_NP`) varies between 32-bit and 64-bit: On 32-bit architectures, it is preceded by three int/unsigned int, while on 64-bit architectures, it is preceded by four of them. These initializers are only available from <pthread.h> when _GNU_SOURCE is defined. Relax the cfg_if check in ci/style.rs to allow #[cfg(target_endian)] tests.
-
- Mar 18, 2018
-
-
Francis Gagné authored
The libc crate is used as a dependency of the Rust compiler. Its build system passes `--cfg dox` to all crates when generating their documentation. libc's documentation is generated when the build system is asked to generate the compiler documentation because `cargo doc` automatically documents all dependencies. When the dox configuration option is enabled, libc disables its dependency on the core crate and provides the necessary definitions itself. The dox configuration option is meant for generating documentation for a multitude of targets even if the core crate for that target is not installed. However, when documenting the compiler, it's not necessary to do that; we can just use core or std as usual. This change is motivated by the changes made to the compiler in rust-lang/rust#48171. With these changes, it's necessary to provide implementations of the Clone and Copy traits for some primitive types in the library that defines these traits (previously, these implementations were provided by the compiler). Normally, these traits (and thus the implementations) are provided by core, so any crate that uses `#![no_core]` must now provide its own copy of the implementations. Because libc doesn't provide its own copy of the implementations yet, and because the compiler's build system passes `--cfg dox` to libc, generating the documentation for the compiler fails when generating documentation for libc. By renaming the configuration option, libc will use core or std and will thus have the necessary definitions for the documentation to be generated successfully.
-
- Mar 15, 2018
-
-
Wesley Moore authored
-
Wesley Moore authored
-
- Feb 27, 2018
- Jan 18, 2018
-
-
Alex Crichton authored
Looks like ubuntu 17.04 is broken now and it fails to link on 17.10 and 18.04. It seems to work on stretch though!
-
Alex Crichton authored
Apparently 17.04 is broken now?
-
- Nov 25, 2017
-
-
Alex Crichton authored
Looks like `cargo test` is now trying to test too many files due to rust-lang/cargo#4750 so add a clause to the wrapper to ignore the bogus ones for now
-
Alex Crichton authored
It wasn't expecting a `*.d` file to exist, now it does.
-
- Nov 13, 2017
-
-
Sébastien Santoro authored
Pure sh scripts should use /bin/sh as it's available on every platform. When using bash-specific features, use env to find it, as bash can be installed in different places according the OS.
-
- Oct 31, 2017
-
-
Marco A L Barbosa authored
-
Marco A L Barbosa authored
-
- Oct 27, 2017
-
-
Marco A L Barbosa authored
-
Marco A L Barbosa authored
-
Marco A L Barbosa authored
-
Marco A L Barbosa authored
-
Marco A L Barbosa authored
-
- Oct 24, 2017
-
-
Marco A L Barbosa authored
-
- Oct 18, 2017
-
-
Alex Crichton authored
* Add syscall tables to most remaining arches in `src/unix/notbsd` * Add aarch64/arm musl to CI * Update dependencies
-
- Oct 04, 2017
-
-
Alex Crichton authored
Apparently it no longer works
-
- Sep 25, 2017
-
-
Tom Kirchner authored
Signed-off-by:
Tom Kirchner <tjk@amazon.com> Signed-off-by:
Ben Cressey <bcressey@amazon.com>
-
- Sep 20, 2017
-
-
Alex Crichton authored
Apparently the 17.10 image broke?
-
- Sep 16, 2017
-
-
Alex Crichton authored
-
- Sep 06, 2017
-
-
Alex Crichton authored
-
- Aug 27, 2017
-
-
Alex Crichton authored
-
Alex Crichton authored
Rebase of #610 and also move emscripten up much higher in the hierarchy to ensure that it doesn't have too much of a ripple effect on other platforms. This involved moving down a good number of definitions, but hopefully was done with care to not break anything!
-
- Aug 22, 2017
-
-
Alex Crichton authored
-
Alex Crichton authored
-