From a8645c7de72e66211ebf5aa783f9375a02f4f5b8 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Wed, 2 Oct 2024 13:53:56 -0400 Subject: [PATCH] Upgrade CI LLVM version to 19.1 19.1 is the latest stable release from 2024-09-17. This will match what is currently being used in rust-lang/rust. --- .github/workflows/main.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 001acd2cc..ec5c059ba 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,7 @@ on: [push, pull_request] env: RUSTDOCFLAGS: -Dwarnings RUSTFLAGS: -Dwarnings - RUST_LLVM_VERSION: 18.0-2024-02-13 + RUST_LLVM_VERSION: 19.1-2024-09-17 RUST_COMPILER_RT_ROOT: ./compiler-rt jobs: diff --git a/README.md b/README.md index 985020f5a..f792d1883 100644 --- a/README.md +++ b/README.md @@ -89,8 +89,8 @@ to test against, located in a directory called `compiler-rt`. This can be obtained with the following: ```sh -curl -L -o rustc-llvm-18.0.tar.gz https://github.com/rust-lang/llvm-project/archive/rustc/18.0-2024-02-13.tar.gz -tar xzf rustc-llvm-18.0.tar.gz --strip-components 1 llvm-project-rustc-18.0-2024-02-13/compiler-rt +curl -L -o rustc-llvm-19.1.tar.gz https://github.com/rust-lang/llvm-project/archive/rustc/19.1-2024-09-17.tar.gz +tar xzf rustc-llvm-19.1.tar.gz --strip-components 1 llvm-project-rustc-19.1-2024-09-17/compiler-rt ``` Local targets may also be tested with `./ci/run.sh [target]`.