Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ You can then open `LLVM.sln` in Visual Studio, change the configuration to `Rele
Afterwards, you can then build `libClangSharp` where the process followed is roughly:
```cmd
git clone https://github.com/microsoft/clangsharp
cd clangsharp
mkdir artifacts/bin/native
cd artifacts/bin/native
cmake -DPATH_TO_LLVM=../../../../llvm-project/artifacts/install/ -G "Visual Studio 16 2019" -A x64 -Thost=x64 ../../..
Expand All @@ -86,6 +87,7 @@ You can then open `libClangSharp.sln` in Visual Studio, change the configuration
If you building on Linux
```
git clone https://github.com/microsoft/clangsharp
cd clangsharp
mkdir artifacts/bin/native
cd artifacts/bin/native
cmake -DPATH_TO_LLVM=/usr/lib/llvm/12/ ../../..
Expand All @@ -95,6 +97,7 @@ make
or if you prefer Ninja
```
git clone https://github.com/microsoft/clangsharp
cd clangsharp
mkdir artifacts/bin/native
cd artifacts/bin/native
cmake -DPATH_TO_LLVM=/usr/lib/llvm/12/ -G Ninja ../../..
Expand Down