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

shrink LLVM #75

Merged
merged 3 commits into from
Oct 19, 2023
Merged

shrink LLVM #75

merged 3 commits into from
Oct 19, 2023

Commits on Oct 13, 2023

  1. clang: sync with upstream

    update clang to 17.0.2-2 from Msys2 in preparation for building our own
    smaller clang for ARM64.
    
    Signed-off-by: Matthias Aßhauer <mha1993@live.de>
    rimrul committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    c687341 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. clang: build a smaller clang/llvm

    Msys2 builds pretty versatile Clang and LLVM packages with LLVM backends
    to cross compile for various target architectures. That comes at the
    cost of big binaries, that challenge how we manage the Git for Windows
    SDK[1]. But for Git for Windows we don't need all of this. We only need
    a Clang that can compile ARM64 binaries on ARM64.
    
    [1] git-for-windows/git-sdk-arm64#7
    
    Signed-off-by: Matthias Aßhauer <mha1993@live.de>
    rimrul committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    e498979 View commit details
    Browse the repository at this point in the history
  2. clang: add helper script to keep package updated

    We'll need to update our clang when Msys2 updates theirs and reapply our
    customisations every time, so a script makes this job less tedious and
    leaves no room to miss a step of the process.
    This script performs the same steps as the previous two commits. (it
    was used to generate the files for those)
    
    Signed-off-by: Matthias Aßhauer <mha1993@live.de>
    rimrul committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    608ca46 View commit details
    Browse the repository at this point in the history