From 558776b4214ac5ae0cbd497777b567c48883527a Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 22 Jun 2026 21:29:58 +0200 Subject: [PATCH] Use LLVM 21 for the CPython JIT compiler --- devcontainer/install-builddeps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devcontainer/install-builddeps.sh b/devcontainer/install-builddeps.sh index 293d9fb..ee14900 100644 --- a/devcontainer/install-builddeps.sh +++ b/devcontainer/install-builddeps.sh @@ -31,8 +31,8 @@ DEPS=( # Necessary for getting Python build dependencies 'dnf5-command(builddep)' - # LLVM sanitizer runtimes - compiler-rt + # LLVM sanitizer runtimes. CPython JIT compiler requires LLVM 21. + compiler-rt21 ) dnf -y --nodocs --setopt=install_weak_deps=False install ${DEPS[@]}