Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 10 pull requests #42090

Closed
wants to merge 23 commits into from

Commits on May 16, 2017

  1. Add an option to run rustbuild on low priority

    This is a resurrection of rust-lang#40776, combining their Windows setup with an
    additional setup on Unix to set the program group's niceness to +10
    (low-but-not-lowest priority) when the `low_priority` option is on.
    Zoxc authored and QuietMisdreavus committed May 16, 2017
    Configuration menu
    Copy the full SHA
    1a7375b View commit details
    Browse the repository at this point in the history

Commits on May 17, 2017

  1. Improve the error management when /proc is not mounted

    This PR does two things:
    * Triggers an error on GNU/Linux & Android when /proc/self/exe doesn't exist
    * Handle the error properly
    sylvestre committed May 17, 2017
    Configuration menu
    Copy the full SHA
    1b6a182 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2017

  1. Configuration menu
    Copy the full SHA
    b955296 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f4e33a0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1eb6639 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    474cc91 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4549423 View commit details
    Browse the repository at this point in the history
  6. Add documentation for ExitStatus

    As requested in rust-lang#29370.
    citizen428 committed May 18, 2017
    Configuration menu
    Copy the full SHA
    b2fc7b1 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4f88106 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    cd6cbd7 View commit details
    Browse the repository at this point in the history
  9. rustbuild: install rust-analysis and rust-src when extended build is …

    …enabled
    
    Signed-off-by: Marc-Antoine Perennou <[email protected]>
    Keruspe committed May 18, 2017
    Configuration menu
    Copy the full SHA
    ecfdc9a View commit details
    Browse the repository at this point in the history
  10. rustbuild: refactor install

    Introduce a new Installer object that hold a reference to all the
    configured paths for installation
    
    Signed-off-by: Marc-Antoine Perennou <[email protected]>
    Keruspe committed May 18, 2017
    Configuration menu
    Copy the full SHA
    801e2b7 View commit details
    Browse the repository at this point in the history
  11. Fix x.py

    nagisa committed May 18, 2017
    Configuration menu
    Copy the full SHA
    c5163aa View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#42024 - citizen428:docs/update-exitstatus, …

    …r=steveklabnik
    
    Add documentation for `ExitStatus`
    
    As requested in rust-lang#29370. r? @steveklabnik
    Mark-Simulacrum authored May 18, 2017
    Configuration menu
    Copy the full SHA
    21dd9fd View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#42056 - sylvestre:master, r=alexcrichton

    Improve the error management when /proc is not mounted
    
    This PR does two things:
    * Triggers an error on GNU/Linux & Android when /proc/self/exe doesn't exist
    * Handle the error properly
    Mark-Simulacrum authored May 18, 2017
    Configuration menu
    Copy the full SHA
    28050d8 View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#42067 - Keruspe:master, r=alexcrichton

    rustbuild: install improvements
    
    Install rust-analysis and rust-src to get in par with what we can get from rustup.
    Allow bypassing the vendoring of dependencies. When we only build to install and not to redistribute dist tarballs, that part is not necessary, so avoid trying to install cargo-vendor.
    Mark-Simulacrum authored May 18, 2017
    Configuration menu
    Copy the full SHA
    b384931 View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#42069 - QuietMisdreavus:low_pri, r=alexcric…

    …hton
    
    Add an option to run rustbuild on low priority on Windows and Unix
    
    This is a resurrection of rust-lang#40776, combining their Windows setup with an additional setup on Unix to set the program group's *nice*ness to +10 (low-but-not-lowest priority, mirroring the priority in the Windows setup) when the `low_priority` option is on.
    Mark-Simulacrum authored May 18, 2017
    Configuration menu
    Copy the full SHA
    59b5585 View commit details
    Browse the repository at this point in the history
  16. Rollup merge of rust-lang#42070 - tshepang:env-misc, r=BurntSushi

    misc doc improvements for std::env
    Mark-Simulacrum authored May 18, 2017
    Configuration menu
    Copy the full SHA
    fa3c407 View commit details
    Browse the repository at this point in the history
  17. Rollup merge of rust-lang#42079 - seeekr:patch-1, r=steveklabnik

    fix typo in libstd/sync/mpsc/mod.rs docs
    Mark-Simulacrum authored May 18, 2017
    Configuration menu
    Copy the full SHA
    284de04 View commit details
    Browse the repository at this point in the history
  18. Rollup merge of rust-lang#42080 - pravic:jquery-removal-fix, r=frewsxcv

    Fix regression introduced by jQuery removal
    
    Fixes rust-lang#42078.
    Follows rust-lang#41307.
    
    r? @steveklabnik
    cc @frewsxcv
    Mark-Simulacrum authored May 18, 2017
    Configuration menu
    Copy the full SHA
    e528654 View commit details
    Browse the repository at this point in the history
  19. Rollup merge of rust-lang#42082 - michaelwoerister:wider_def_path_has…

    …hes, r=eddyb
    
    incr. comp.: Use more bits for DefPath hashes
    
    Use 128 instead of 64 bits for DefPath hashes, like we do for everything else. Collision probability is unnecessarily high with 64 bits.
    
    Also change the representation of `ich::Fingerprint` from `Fingerprint([u8; 16])` to `Fingerprint(u64, u64)` which is better for hashers like `FxHasher`.
    Mark-Simulacrum authored May 18, 2017
    Configuration menu
    Copy the full SHA
    b6ada54 View commit details
    Browse the repository at this point in the history
  20. Rollup merge of rust-lang#42086 - alexcrichton:update-cargo, r=Mark-S…

    …imulacrum
    
    Update the Cargo submodules
    
    More info [here](rust-lang#42070 (comment)) as to what's going on.
    Mark-Simulacrum authored May 18, 2017
    Configuration menu
    Copy the full SHA
    3bb3b28 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    82daee0 View commit details
    Browse the repository at this point in the history