Skip to content

Commit 6e26b34

Browse files
committed
python: pgo-llvm-builder: LLVM 19.1.6 and dependency updates
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
1 parent c785ed5 commit 6e26b34

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

python/pgo-llvm-builder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM docker.io/debian:10-slim
22

33
# LLVM may require an newer version of cmake, download and install the latest
44
# prebuilt.
5-
ARG CMAKE_VERSION=3.31.1
5+
ARG CMAKE_VERSION=3.31.2
66
RUN apt update && \
77
apt upgrade -y && \
88
apt install -y --no-install-recommends \
@@ -29,7 +29,7 @@ RUN apt update && \
2929
# Buster has Python 3.7, tc-build requires at least Python 3.8 due to liberal
3030
# use of the walrus operator (':='), so build and install the latest stable
3131
# version.
32-
ARG PYTHON_VERSION=3.13.0
32+
ARG PYTHON_VERSION=3.13.1
3333
RUN dir=$(mktemp -d) && \
3434
url=https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz && \
3535
apt update && \

python/pgo-llvm-builder/build.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323

2424
LLVM_REFS = {
2525
'20.0.0': 'origin/main',
26-
'19.1.6': 'release/19.x',
26+
'19.1.7': 'release/19.x',
2727
}
2828

2929
LLVM_VERSIONS = [
3030
'20.0.0', # git
31-
'19.1.6', # release/19.x
32-
'19.1.5',
31+
'19.1.7', # release/19.x
32+
'19.1.6',
3333
'18.1.8',
3434
'17.0.6',
3535
'16.0.6',

0 commit comments

Comments
 (0)