Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rust-lang/compiler-builtins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: compiler_builtins-v0.1.119
Choose a base ref
...
head repository: rust-lang/compiler-builtins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: compiler_builtins-v0.1.122
Choose a head ref
  • 16 commits
  • 8 files changed
  • 5 contributors

Commits on Aug 19, 2024

  1. Apply fixes to build.rs files

    Make the following changes:
    
    - Add `rerun-if-changed` to the new `configure.rs`, it seems this was
      causing incorrect caching.
    - Change from matching `i686` to `x86`. The target triple starts with
      `i686` so that is what we were checking before, but the architecture
      is `x86`. This change should have been made when we added `struct
      Target`, update it now instead.
    tgross35 committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    0f809f6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #670 from tgross35/build-fix

    Apply fixes to `build.rs` files
    tgross35 authored Aug 19, 2024
    Configuration menu
    Copy the full SHA
    d96d3a7 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2024

  1. Fix weak linkage on windows and apple platforms

    There were some issues regarding windows and apple platform, we were
    exporting symbols that are already provided by the compiler but weren't
    marked as `weak` which resulted in conflicted symbols in the linking
    process.
    
    Initially, we didn't add `weak` because we thought it is not supported
    on windows and apple platforms, but it looks like its only not supported
    on windows-gnu platforms
    
    Signed-off-by: Amjad Alsharafi <26300843+Amjad50@users.noreply.github.com>
    Amjad50 committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    6651d11 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #672 from Amjad50/fix-weak-linkage

    Fix weak linkage on windows and apple platforms
    tgross35 authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    be4374f View commit details
    Browse the repository at this point in the history
  3. chore: release

    github-actions[bot] authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    71e9468 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #671 from rust-lang/release-plz-2024-08-19T12-14-41Z

    chore: release v0.1.120
    tgross35 authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    404fe91 View commit details
    Browse the repository at this point in the history
  5. Use array simd in U64x2

    scottmcm committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    f3882e4 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #673 from scottmcm/only-array-simd

    Use array simd in `U64x2`
    tgross35 authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    caf5998 View commit details
    Browse the repository at this point in the history
  7. chore: release

    github-actions[bot] authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    2fcb07e View commit details
    Browse the repository at this point in the history
  8. Merge pull request #674 from rust-lang/release-plz-2024-08-22T08-01-12Z

    chore: release v0.1.121
    tgross35 authored Aug 22, 2024
    Configuration menu
    Copy the full SHA
    41d37b4 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2024

  1. Configuration menu
    Copy the full SHA
    fb6cb2a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b44d52f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #676 from beetrees/ci-macos-latest

    Use `macos-latest` in CI for `aarch64-apple-darwin`
    tgross35 authored Aug 24, 2024
    Configuration menu
    Copy the full SHA
    d78cc8e View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2024

  1. Configuration menu
    Copy the full SHA
    a113c7c View commit details
    Browse the repository at this point in the history
  2. chore: release

    github-actions[bot] authored Aug 25, 2024
    Configuration menu
    Copy the full SHA
    6b53289 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #677 from rust-lang/release-plz-2024-08-25T04-08-05Z

    chore: release v0.1.122
    tgross35 authored Aug 25, 2024
    Configuration menu
    Copy the full SHA
    081192c View commit details
    Browse the repository at this point in the history
Loading