We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e958f37 + ee1814a commit 60ce99bCopy full SHA for 60ce99b
README.md
@@ -2,6 +2,18 @@
2
3
LLVM Examples and Code samples. LLVM Passes. Based on [llvm-project](https://github.com/llvm/llvm-project)
4
5
+```bash
6
+# llvm cmake
7
+cmake -G "Ninja" build \
8
+ -DLLVM_ENABLE_PROJECTS="llvm;compiler-rt;clang;clang-tools-extra" \
9
+ -DCMAKE_BUILD_TYPE=Release \
10
+ -DLLVM_ENABLE_ASSERTIONS=ON \
11
+ -DLLVM_CCACHE_BUILD=OFF \
12
+ -DLLVM_BUILD_TESTS=ON \
13
+ -DLLVM_INSTALL_UTILS=ON \
14
+ -B build -S llvm
15
+```
16
+
17
## Installing from Docker
18
19
Check `build` commands in the `Dockerfile` for more information
0 commit comments