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 7 pull requests #45532

Merged
merged 16 commits into from
Oct 26, 2017
Merged

Rollup of 7 pull requests #45532

merged 16 commits into from
Oct 26, 2017

Commits on Oct 6, 2017

  1. Add current_pid function

    tmccombs committed Oct 6, 2017
    Configuration menu
    Copy the full SHA
    6ff6b93 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2017

  1. Add missing colon.

    tmccombs committed Oct 7, 2017
    Configuration menu
    Copy the full SHA
    ba75758 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2017

  1. Configuration menu
    Copy the full SHA
    29b319b View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2017

  1. rustbuild: Fix no output generated error for next bootstrap cargo.

    Due to rust-lang/cargo#4570, a `*.dll.lib` file is uplifted when building
    dynamic libraries on Windows. The current bootstrap code does not
    understand files with multiple extensions, and will instead assume
    `xxxx.dll` is the file name. This caused a `no output generated` error
    because it tries to search for `xxxx.dll-hash.lib` inside the `deps/`
    folder, while it should check for `xxxx-hash.dll.lib` instead.
    
    This PR is blocking rust-lang#45285 (Bump to 1.23 and update bootstrap).
    kennytm committed Oct 24, 2017
    Configuration menu
    Copy the full SHA
    3b81573 View commit details
    Browse the repository at this point in the history
  2. Fix the sidebar height

    GuillaumeGomez committed Oct 24, 2017
    Configuration menu
    Copy the full SHA
    9ce41f2 View commit details
    Browse the repository at this point in the history
  3. Disable jemalloc for sparcv9-sun-solaris

    Similar to rust-lang#36994, rust programs segfault on SPARC64 Solaris machines.
    bgermann committed Oct 24, 2017
    Configuration menu
    Copy the full SHA
    7bab5da View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2017

  1. Configuration menu
    Copy the full SHA
    0e46cf4 View commit details
    Browse the repository at this point in the history
  2. ci: Test more asmjs again

    This was accidentally added in rust-lang#45352, forgot to back it out!
    alexcrichton committed Oct 25, 2017
    Configuration menu
    Copy the full SHA
    36822ba View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c2c1910 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#45059 - tmccombs:pid, r=alexcrichton

    Add current_pid function
    
    Fixes rust-lang#44971
    kennytm authored Oct 25, 2017
    Configuration menu
    Copy the full SHA
    bea6136 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#45212 - GuillaumeGomez:sidebar-fixed, r=Qui…

    …etMisdreavus
    
    Limit the sidebar height
    
    The sidebar is now fixed, which means its scrolling is independent of the main page now.
    
    r? @rust-lang/docs
    kennytm authored Oct 25, 2017
    Configuration menu
    Copy the full SHA
    fc48893 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#45398 - integer32llc:reassignment, r=arielb1

    Correct misspelling in error text: re-assignment => reassignment
    
    [reassignment is the correct spelling](https://www.thefreedictionary.com/reassignment) rather than re-assignment; this error message looks silly in the book next to text trying to be grammatically correct :-/
    
    Will this cause any stability/backcompat type issues?
    kennytm authored Oct 25, 2017
    Configuration menu
    Copy the full SHA
    6402797 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#45483 - mbrubeck:hash, r=alexcrichton

    Implement Hash for raw pointers to unsized types
    
    This is useful for some niche cases, like a hash table of slices or trait objects where the key is the raw pointer.  Example use case: https://docs.rs/by_address
    kennytm authored Oct 25, 2017
    Configuration menu
    Copy the full SHA
    86360b7 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#45496 - kennytm:bootstrap-fix-extension-che…

    …ck, r=alexcrichton
    
    rustbuild: Fix `no output generated` error for next bootstrap cargo.
    
    Due to rust-lang/cargo#4570, a `*.dll.lib` file is uplifted when building dynamic libraries on Windows. The current bootstrap code does not understand files with multiple extensions, and will instead assume `xxxx.dll` is the file name. This caused a `no output generated` error because it tries to search for `xxxx.dll-hash.lib` inside the `deps/` folder, while it should check for `xxxx-hash.dll.lib` instead.
    
    This PR is blocking rust-lang#45285, see rust-lang#45285 (comment) and the rest of the comments for detail.
    kennytm authored Oct 25, 2017
    Configuration menu
    Copy the full SHA
    7ccdc10 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#45508 - bgermann:master, r=alexcrichton

    Disable jemalloc for sparcv9-sun-solaris
    
    Similar to rust-lang#36994, rust programs segfault on SPARC64 Solaris machines.
    kennytm authored Oct 25, 2017
    Configuration menu
    Copy the full SHA
    5ae94d4 View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#45526 - alexcrichton:test-more-asm, r=aturon

    ci: Test more asmjs again
    
    This was accidentally added in rust-lang#45352, forgot to back it out!
    kennytm authored Oct 25, 2017
    Configuration menu
    Copy the full SHA
    851d1c7 View commit details
    Browse the repository at this point in the history