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: dotnet/runtime
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 16e9d33
Choose a base ref
...
head repository: dotnet/runtime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 262b509
Choose a head ref
  • 4 commits
  • 16 files changed
  • 5 contributors

Commits on Aug 27, 2021

  1. [mono] Avoid a JIT assert. (#58127)

    Workaround for #57560.
    
    Co-authored-by: Zoltan Varga <vargaz@gmail.com>
    github-actions[bot] and vargaz authored Aug 27, 2021
    Configuration menu
    Copy the full SHA
    0cd887c View commit details
    Browse the repository at this point in the history
  2. [release/6.0-rc1] [MacCatalyst] Make AppleCryptoNative_SslSetEnabledC…

    …ipherSuites check for 32 bit & 16 bit SSLCipherSuite (#58182)
    
    * [MacCatalyst] Make AppleCryptoNative_SslSetEnabledCipherSuites check for 32 bit & 16 bit SSLCipherSuite
    
    According to CipherSuites.h, SSLCipherSuite is a 16 bit value on iOS/tvOS x64 & arm64, but on MacCatalyst that is only true on arm64.  x64 is defined as 32 bit.
    
    ```
    /* 16-bit value on iOS */
    typedef uint16_t SSLCipherSuite;
    /* 32-bit value elsewhere */
    typedef uint32_t SSLCipherSuite;
    ```
    
    Fixes #53120
    
    * Feedback
    
    Co-authored-by: Steve Pfister <steve.pfister@microsoft.com>
    github-actions[bot] and Steve Pfister authored Aug 27, 2021
    Configuration menu
    Copy the full SHA
    7a1f2a4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8da82f2 View commit details
    Browse the repository at this point in the history
  4. [mono] Replace -disable-fp-elim with -frame-pointer=all (#58195)

    `-disable-fp-elim` was removed in LLVM 8 in commit b7cef81fd36c85e52b115b9ed6d1fb92d63781d6.
    Also see https://reviews.llvm.org/D56351.
    
    The replacement option, `-frame-pointer`, is still present in LLVM 11.
    
    Fixes #58112.
    
    Co-authored-by: Imran Hameed <imhameed@microsoft.com>
    github-actions[bot] and imhameed authored Aug 27, 2021
    Configuration menu
    Copy the full SHA
    262b509 View commit details
    Browse the repository at this point in the history
Loading