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
or an equivalent command for your operating system of choice.
13
+
14
+
## Instructions
15
+
16
+
To configure project run `cmake` with following default options.
17
+
In case `clang` isn't your default compiler prefix the command with `CC=clang CXX=clang++`.
18
+
If you want to use system installed `llvm` and `mlir` (on Ubuntu) use:
19
+
20
+
```
21
+
cmake --preset ninja-multi-default \
22
+
--toolchain ./cmake/lld.toolchain.cmake \
23
+
-DCMAKE_PREFIX_PATH=/usr/lib/llvm-17/
24
+
```
25
+
26
+
To use a specific `llvm` provide `-DCMAKE_PREFIX_PATH=<llvm & mlir instalation paths>` option, where `CMAKE_PREFIX_PATH` points to directory containing `LLVMConfig.cmake` and `MLIRConfig.cmake`.
27
+
28
+
Note: vast requires LLVM with RTTI enabled. Use `LLVM_ENABLE_RTTI=ON` if you build your own LLVM.
0 commit comments