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

Update compiler_builtins to fix duplicate symbols in armv7-linux-androideabi rlib #93436

Merged
merged 1 commit into from
Feb 1, 2022

Commits on Jan 29, 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 committed Jan 29, 2022
    Configuration menu
    Copy the full SHA
    746b3d8 View commit details
    Browse the repository at this point in the history