Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/build-llvm-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,8 @@ jobs:
- run: nproc
- run: ${{ env.RETRY }} wget https://apt.llvm.org/llvm.sh
- run: chmod +x llvm.sh
- run: ${{ env.RETRY }} ./llvm.sh 22
- run: ${{ env.RETRY }} apt-get install -y bolt-22 clang-22 libclang-common-22-dev libclang-22-dev mlir-22-tools llvm-22-tools libclang-common-22-dev libclang-22-dev libclang1-22 clang-format-22 python3-clang-22 clangd-22 clang-tidy-22 libomp-22-dev
# TODO: remove in the future
- run: touch /usr/lib/llvm-22/lib/libLibcTableGenUtil.a
- run: ./llvm.sh 23
- run: apt-get install -y bolt-23 clang-23 libclang-common-23-dev libclang-23-dev mlir-23-tools llvm-23-tools libclang-common-23-dev libclang-23-dev libclang1-23 clang-format-23 python3-clang-23 clangd-23 clang-tidy-23 libomp-23-dev
- uses: actions/checkout@v6
- run: mkdir objdir
- run: cmake .. -DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=mold" -DCMAKE_SHARED_LINKER_FLAGS="-fuse-ld=mold"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ jobs:
strategy:
matrix:
# Note: when changing the versions below, update INSTALL.md as well.
llvm: [18, 19, 20, 21]
llvm: [18, 19, 20, 21, 22]
build-type: [DEBUG]
include:
- llvm: 21
- llvm: 22
build-type: ASAN
- llvm: 21
- llvm: 22
build-type: UBSAN
- llvm: 21
- llvm: 22
build-type: RelWithDebInfo
extra-flags: -flto=auto
- llvm: 21
- llvm: 22
build-type: RelWithDebInfo
env: CC=clang CXX=clang++
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ manager:
all you need). For example, the openSUSE Tumbleweed provides them
by `llvm-devel` and `clang-devel` packages.

Tested LLVM versions: ``18.0.0`` - ``22.0.0``
Tested LLVM versions: ``18.0.0`` - ``23.0.0``

* [Python 3.10+](https://www.python.org/downloads/)

Expand Down
Loading