Skip to content

Commit 37f4742

Browse files
authored
Update documentation
1 parent 8bccb8d commit 37f4742

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Emscripten-build-instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,20 @@ source ./emsdk/emsdk_env.sh
3333
export SYSROOT_PATH=$PWD/emsdk/upstream/emscripten/cache/sysroot
3434
```
3535

36-
Now clone the 19.x release of the LLVM project repository and CppInterOp (the building of the emscripten version of llvm can be
36+
Now clone the 20.x release of the LLVM project repository and CppInterOp (the building of the emscripten version of llvm can be
3737
avoided by executing micromamba install llvm -c <https://repo.mamba.pm/emscripten-forge> and setting the LLVM_BUILD_DIR appropriately)
3838

3939

4040
```bash
41-
git clone --depth=1 --branch release/19.x https://github.com/llvm/llvm-project.git
41+
git clone --depth=1 --branch release/20.x https://github.com/llvm/llvm-project.git
4242
git clone --depth=1 https://github.com/compiler-research/CppInterOp.git
4343
```
4444

4545
Now move into the cloned llvm-project folder and apply the required patches
4646

4747
```bash
4848
cd ./llvm-project/
49-
git apply -v ../CppInterOp/patches/llvm/emscripten-clang19-*.patch
49+
git apply -v ../CppInterOp/patches/llvm/emscripten-clang20-*.patch
5050
```
5151

5252
We are now in a position to build an emscripten build of llvm by executing the following

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ git clone --depth=1 https://github.com/compiler-research/cppyy-backend.git
115115

116116
#### Setup Clang-REPL
117117

118-
Clone the 19.x release of the LLVM project repository.
118+
Clone the 20.x release of the LLVM project repository.
119119

120120
```bash
121-
git clone --depth=1 --branch release/19.x https://github.com/llvm/llvm-project.git
121+
git clone --depth=1 --branch release/20.x https://github.com/llvm/llvm-project.git
122122
cd llvm-project
123123
```
124124

docs/DevelopersDocumentation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ library
3434
Setup Clang-REPL
3535
******************
3636

37-
Clone the 19.x release of the LLVM project repository.
37+
Clone the 20.x release of the LLVM project repository.
3838

3939
.. code:: bash
4040
41-
git clone --depth=1 --branch release/19.x https://github.com/llvm/llvm-project.git
41+
git clone --depth=1 --branch release/20.x https://github.com/llvm/llvm-project.git
4242
cd llvm-project
4343
4444
For Clang 16 & 17, the following patches required for development work. To apply

docs/InstallationAndUsage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ library
3434
Setup Clang-REPL
3535
******************
3636

37-
Clone the 19.x release of the LLVM project repository.
37+
Clone the 20.x release of the LLVM project repository.
3838

3939
.. code:: bash
4040
41-
git clone --depth=1 --branch release/19.x https://github.com/llvm/llvm-project.git
41+
git clone --depth=1 --branch release/20.x https://github.com/llvm/llvm-project.git
4242
cd llvm-project
4343
4444
For Clang 16 & 17, the following patches required for development work. To apply

docs/ReleaseNotes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ infrastructure are described first.
2525
## External Dependencies
2626

2727
- CppInterOp now works with:
28-
- llvm19
28+
- llvm20
2929

3030
## Introspection
3131

0 commit comments

Comments
 (0)