Skip to content

Commit 73281de

Browse files
committed
Build read the docs developer documentationn against llvm 20
1 parent 852f6d4 commit 73281de

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.readthedocs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ build:
99
tools:
1010
python: "3.11"
1111
apt_packages:
12-
- clang-18
12+
- clang-20
1313
- cmake
14-
- libclang-18-dev
15-
- llvm-18-dev
16-
- llvm-18-tools
14+
- libclang-20-dev
15+
- llvm-20-dev
16+
- llvm-20-tools

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
html_extra_path = [CPPINTEROP_ROOT + '/build/docs/']
5151

5252
import subprocess
53-
command = 'mkdir {0}/build; cd {0}/build; cmake ../ -DClang_DIR=/usr/lib/llvm-16/build/lib/cmake/clang\
54-
-DLLVM_DIR=/usr/lib/llvm-16/build/lib/cmake/llvm -DCPPINTEROP_ENABLE_DOXYGEN=ON\
53+
command = 'mkdir {0}/build; cd {0}/build; cmake ../ -DClang_DIR=/usr/lib/llvm-20/build/lib/cmake/clang\
54+
-DLLVM_DIR=/usr/lib/llvm-20/build/lib/cmake/llvm -DCPPINTEROP_ENABLE_DOXYGEN=ON\
5555
-DCPPINTEROP_INCLUDE_DOCS=ON'.format(CPPINTEROP_ROOT)
5656
subprocess.call(command, shell=True)
5757
subprocess.call('doxygen {0}/build/docs/doxygen.cfg'.format(CPPINTEROP_ROOT), shell=True)

0 commit comments

Comments
 (0)