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/llvm-project
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e5c221b85d
Choose a base ref
...
head repository: dotnet/llvm-project
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3358dfd351
Choose a head ref
  • 9 commits
  • 45 files changed
  • 4 contributors

Commits on Jul 16, 2024

  1. Do not use unwinder in libc++ and clang (#596)

    Tested on ubuntu
    
        LD_LIBRARY_PATH=./artifacts/obj/libcxx/InstallRoot-arm64/lib/ ldd ./artifacts/obj/InstallRoot-arm64/bin/clang++
        	linux-vdso.so.1 (0x0000ffffb9058000)
        	libm.so.6 => /lib/aarch64-linux-gnu/libm.so.6 (0x0000ffffb2ec0000)
        	libz.so.1 => /lib/aarch64-linux-gnu/libz.so.1 (0x0000ffffb2e80000)
        	libc++.so.1 => ./artifacts/obj/libcxx/InstallRoot-arm64/lib/libc++.so.1 (0x0000ffffb2cf0000)
        	libc++abi.so.1 => ./artifacts/obj/libcxx/InstallRoot-arm64/lib/libc++abi.so.1 (0x0000ffffb2c70000)
        	libgcc_s.so.1 => /lib/aarch64-linux-gnu/libgcc_s.so.1 (0x0000ffffb2c30000)
        	libc.so.6 => /lib/aarch64-linux-gnu/libc.so.6 (0x0000ffffb2a70000)
        	/lib/ld-linux-aarch64.so.1 (0x0000ffffb901b000)
    radekdoulik authored Jul 16, 2024
    Configuration menu
    Copy the full SHA
    ed3ebba View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Update dependencies from https://github.com/dotnet/arcade build 20240…

    …621.4 (#587)
    
    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Helix.Sdk
     From Version 9.0.0-beta.24320.6 -> To Version 9.0.0-beta.24321.4
    
    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    2 people authored and akoeplinger committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    e38fe42 View commit details
    Browse the repository at this point in the history
  2. Update dependencies from https://github.com/dotnet/arcade build 20240…

    …627.1 (#588)
    
    [dotnet/main-16.x] Update dependencies from dotnet/arcade
    dotnet-maestro[bot] authored and akoeplinger committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    2464427 View commit details
    Browse the repository at this point in the history
  3. Update dependencies from https://github.com/dotnet/arcade build 20240…

    …702.2 (#591)
    
    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Helix.Sdk
     From Version 9.0.0-beta.24327.1 -> To Version 9.0.0-beta.24352.2
    
    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    2 people authored and akoeplinger committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    d40d591 View commit details
    Browse the repository at this point in the history
  4. Update dependencies from https://github.com/dotnet/arcade build 20240…

    …710.4 (#595)
    
    [dotnet/main-16.x] Update dependencies from dotnet/arcade
    dotnet-maestro[bot] authored and akoeplinger committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    2b3a65b View commit details
    Browse the repository at this point in the history
  5. Remove LLVM_TOOLS_TO_BUILD option from llvm.proj (#590)

    This was a custom change added in da3d772 but we missed porting that to recent branches.
    
    Given we've not even noticed until now and it just causes building a bit more tools I'd argue it's better to just remove this.
    akoeplinger committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    d342798 View commit details
    Browse the repository at this point in the history
  6. Fix building with debug msvc runtime library on Windows (#597)

    The old flags were removed upstream: llvm#66850
    akoeplinger authored Jul 17, 2024
    Configuration menu
    Copy the full SHA
    1b6b23e View commit details
    Browse the repository at this point in the history
  7. Only set LLVM_ENABLE_PDB and LEGAL_COPYRIGHT options on Windows (#598)

    It's ignored on other platforms and causes a warning in the log.
    akoeplinger authored Jul 17, 2024
    Configuration menu
    Copy the full SHA
    d1f384c View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2024

  1. Disable function specialization (#599)

    It breaks mono's AOT compiled code, because the specialized functions
    are outside of generated EH frame code range.
    
    We can re-enable it, once we fix EH frame generation for mono.
    radekdoulik authored Jul 20, 2024
    Configuration menu
    Copy the full SHA
    3358dfd View commit details
    Browse the repository at this point in the history
Loading