Skip to content

Commit fbdf27a

Browse files
Merge pull request #602 from ds5678/update-readme
Update build native documentation
2 parents b1dd8ea + 36a8b3b commit fbdf27a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,18 @@ cd artifacts/bin
8484
cmake -DCMAKE_INSTALL_PREFIX=../install -DLLVM_ENABLE_PROJECTS=clang -G "Visual Studio 17 2022" -A x64 -Thost=x64 ../../llvm
8585
```
8686

87-
You can then open `LLVM.sln` in Visual Studio, change the configuration to `Release` and build the `install` project.
87+
You can then open `LLVM.sln` in Visual Studio, change the configuration to `Release` and build the `INSTALL` project. You may need to build the `ALL_BUILD` first.
8888

8989
Afterwards, you can then build `libClangSharp` where the process followed is roughly:
9090
```cmd
9191
git clone https://github.com/dotnet/clangsharp
9292
cd clangsharp
9393
mkdir artifacts/bin/native
9494
cd artifacts/bin/native
95-
cmake -DCMAKE_INSTALL_PREFIX=../install -DPATH_TO_LLVM=../../../../llvm-project/artifacts/install -G "Visual Studio 17 2022" -A x64 -Thost=x64 ../../..
95+
cmake -DCMAKE_INSTALL_PREFIX=../install -DPATH_TO_LLVM=absolute/path/to/repos/llvm-project/artifacts/install -G "Visual Studio 17 2022" -A x64 -Thost=x64 ../../..
9696
```
9797

98-
You can then open `libClangSharp.sln` in Visual Studio, change the configuration to `Release` and build the `install` project.
98+
You can then open `libClangSharp.sln` in Visual Studio, change the configuration to `Release` and build the `INSTALL` project.
9999

100100
#### Linux
101101

0 commit comments

Comments
 (0)