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

[stable] 1.59.0 release #94224

Merged
merged 5 commits into from
Feb 22, 2022
Merged

[stable] 1.59.0 release #94224

merged 5 commits into from
Feb 22, 2022

Commits on Feb 21, 2022

  1. Configuration menu
    Copy the full SHA
    4982eab View commit details
    Browse the repository at this point in the history
  2. Destabilise entry_insert

    5225225 authored and Mark-Simulacrum committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    4104813 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2022

  1. Update compiler_builtins to fix duplicate symbols in `armv7-linux-and…

    …roideabi` rlib
    
    I ran `./x.py dist --host= --target=armv7-linux-androideabi` before this diff:
    ```
    $ nm build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/armv7-linux-androideabi/lib/libcompiler_builtins-3d9661a82c59c66a.rlib 2> /dev/null | grep __sync_fetch_and_add_4 | wc -l
    2
    ```
    And after:
    ```
    $ nm build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/armv7-linux-androideabi/lib/libcompiler_builtins-ffd2745070943321.rlib 2> /dev/null | grep __sync_fetch_and_add_4 | wc -l
    1
    ```
    Fixes rust-lang#93310
    dcsommer authored and Mark-Simulacrum committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    e17e466 View commit details
    Browse the repository at this point in the history
  2. Bump CI channel

    Mark-Simulacrum committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    a92566a View commit details
    Browse the repository at this point in the history
  3. Soft-disable incremental compilation

    This disables incremental compilation by default and adds a snippet to the
    compiler release notes explaining the rationale and encouraging testing.
    Mark-Simulacrum committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    6af5faf View commit details
    Browse the repository at this point in the history