Skip to content

Commit f8a32e9

Browse files
committed
Bumped minimal tested LLVM version to 9
This bumps the minimal tested llvm version to 9. This should enable supporting newer LLVM features (and CPU extensions).
1 parent 55794e4 commit f8a32e9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: mingw-check
4444
os: ubuntu-latest-xl
4545
env: {}
46-
- name: x86_64-gnu-llvm-8
46+
- name: x86_64-gnu-llvm-9
4747
os: ubuntu-latest-xl
4848
env: {}
4949
- name: x86_64-gnu-tools
@@ -265,7 +265,7 @@ jobs:
265265
- name: x86_64-gnu-distcheck
266266
os: ubuntu-latest-xl
267267
env: {}
268-
- name: x86_64-gnu-llvm-8
268+
- name: x86_64-gnu-llvm-9
269269
env:
270270
RUST_BACKTRACE: 1
271271
os: ubuntu-latest-xl

src/ci/docker/host-x86_64/x86_64-gnu-llvm-8/Dockerfile renamed to src/ci/docker/host-x86_64/x86_64-gnu-llvm-9/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1313
cmake \
1414
sudo \
1515
gdb \
16-
llvm-8-tools \
16+
llvm-9-tools \
1717
libedit-dev \
1818
libssl-dev \
1919
pkg-config \
@@ -27,7 +27,7 @@ RUN sh /scripts/sccache.sh
2727
# using llvm-link-shared due to libffi issues -- see #34486
2828
ENV RUST_CONFIGURE_ARGS \
2929
--build=x86_64-unknown-linux-gnu \
30-
--llvm-root=/usr/lib/llvm-8 \
30+
--llvm-root=/usr/lib/llvm-9 \
3131
--enable-llvm-link-shared \
3232
--set rust.thin-lto-import-instr-limit=10
3333

src/ci/github-actions/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ jobs:
280280
- name: mingw-check
281281
<<: *job-linux-xl
282282

283-
- name: x86_64-gnu-llvm-8
283+
- name: x86_64-gnu-llvm-9
284284
<<: *job-linux-xl
285285

286286
- name: x86_64-gnu-tools
@@ -412,7 +412,7 @@ jobs:
412412
- name: x86_64-gnu-distcheck
413413
<<: *job-linux-xl
414414

415-
- name: x86_64-gnu-llvm-8
415+
- name: x86_64-gnu-llvm-9
416416
env:
417417
RUST_BACKTRACE: 1
418418
<<: *job-linux-xl

0 commit comments

Comments
 (0)