Skip to content

Commit 49d02d2

Browse files
committed
Updated MSVC build scripts
1 parent 7fcda6a commit 49d02d2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
param (
2-
$Prefix="C:\clang-uml-llvm19",
2+
$Prefix="C:\clang-uml-llvm20",
33
$BuildType="Release"
44
)
55

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ Build and install `yaml-cpp`:
216216
```bash
217217
git clone https://github.com/jbeder/yaml-cpp
218218
cd yaml-cpp
219-
git checkout yaml-cpp-0.8.0
219+
git checkout 0.8.0
220220
cd ..
221221
cmake -S .\yaml-cpp\ -B .\yaml-cpp-build\ -DYAML_BUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX="C:\clang-uml" -Thost=x64
222222
cd yaml-cpp-build
@@ -228,7 +228,7 @@ Build and install `LLVM`:
228228
```bash
229229
pip install psutil
230230
# Update the LLVM branch if necessary
231-
git clone --branch llvmorg-19.1.3 --depth 1 https://github.com/llvm/llvm-project.git llvm
231+
git clone --branch llvmorg-20.1.7 --depth 1 https://github.com/llvm/llvm-project.git llvm
232232
cmake -S .\llvm\llvm -B llvm-build -DLLVM_ENABLE_PROJECTS=clang -DCMAKE_INSTALL_PREFIX="C:\clang-uml" -DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD=X86 -Thost=x64
233233
cd llvm-build
234234
msbuild .\INSTALL.vcxproj -maxcpucount /p:Configuration=Release

packaging/make_installer.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This script assumes that all clang-uml dependencies are instaled in C:\clang-uml
22

3-
param ($Prefix="C:\clang-uml-llvm19", $BuildType="Release")
3+
param ($Prefix="C:\clang-uml-llvm20", $BuildType="Release")
44

55
mkdir _BUILD
66

0 commit comments

Comments
 (0)