You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,18 +84,18 @@ cd artifacts/bin
84
84
cmake -DCMAKE_INSTALL_PREFIX=../install -DLLVM_ENABLE_PROJECTS=clang -G "Visual Studio 17 2022" -A x64 -Thost=x64 ../../llvm
85
85
```
86
86
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.
88
88
89
89
Afterwards, you can then build `libClangSharp` where the process followed is roughly:
90
90
```cmd
91
91
git clone https://github.com/dotnet/clangsharp
92
92
cd clangsharp
93
93
mkdir artifacts/bin/native
94
94
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 ../../..
96
96
```
97
97
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.
0 commit comments