File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ You can then open `LLVM.sln` in Visual Studio, change the configuration to `Rele
7676Afterwards, you can then build ` libClangSharp ` where the process followed is roughly:
7777``` cmd
7878git clone https://github.com/microsoft/clangsharp
79+ cd clangsharp
7980mkdir artifacts/bin/native
8081cd artifacts/bin/native
8182cmake -DPATH_TO_LLVM=../../../../llvm-project/artifacts/install/ -G "Visual Studio 16 2019" -A x64 -Thost=x64 ../../..
@@ -86,6 +87,7 @@ You can then open `libClangSharp.sln` in Visual Studio, change the configuration
8687If you building on Linux
8788```
8889git clone https://github.com/microsoft/clangsharp
90+ cd clangsharp
8991mkdir artifacts/bin/native
9092cd artifacts/bin/native
9193cmake -DPATH_TO_LLVM=/usr/lib/llvm/12/ ../../..
9597or if you prefer Ninja
9698```
9799git clone https://github.com/microsoft/clangsharp
100+ cd clangsharp
98101mkdir artifacts/bin/native
99102cd artifacts/bin/native
100103cmake -DPATH_TO_LLVM=/usr/lib/llvm/12/ -G Ninja ../../..
You can’t perform that action at this time.
0 commit comments