Skip to content

Commit 2ce66e8

Browse files
Merge pull request #262 from danieljennings/patch-2
Minor fix the libclangsharp build instructions
2 parents 13191c2 + c8a437d commit 2ce66e8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ You can then open `LLVM.sln` in Visual Studio, change the configuration to `Rele
7676
Afterwards, you can then build `libClangSharp` where the process followed is roughly:
7777
```cmd
7878
git clone https://github.com/microsoft/clangsharp
79+
cd clangsharp
7980
mkdir artifacts/bin/native
8081
cd artifacts/bin/native
8182
cmake -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
8687
If you building on Linux
8788
```
8889
git clone https://github.com/microsoft/clangsharp
90+
cd clangsharp
8991
mkdir artifacts/bin/native
9092
cd artifacts/bin/native
9193
cmake -DPATH_TO_LLVM=/usr/lib/llvm/12/ ../../..
@@ -95,6 +97,7 @@ make
9597
or if you prefer Ninja
9698
```
9799
git clone https://github.com/microsoft/clangsharp
100+
cd clangsharp
98101
mkdir artifacts/bin/native
99102
cd artifacts/bin/native
100103
cmake -DPATH_TO_LLVM=/usr/lib/llvm/12/ -G Ninja ../../..

0 commit comments

Comments
 (0)