blob: 2676efebce521d0a56685117f5dd886122ade282 [file] [log] [blame] [view]
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -07001# CMake Options and Variables
2
3## Frequently-used CMake Variables
4
5#### `CMAKE_BUILD_TYPE`:STRING
6
7Sets the build type. Possible values are `Release`, `Debug`,
8`RelWithDebInfo`/`FastBuild` and `MinSizeRel`. If unset, build type is set to
9`Release`.
10
11#### `CMAKE_<LANG>_COMPILER`:STRING
12
13This is the command that will be used as the `<LANG>` compiler, which are `C`
14and `CXX` in IREE. These variables are set to compile IREE with `clang` or
15rather `clang++`. Once set, these variables can not be changed.
16
17## IREE-specific CMake Options and Variables
Marius Brehlerc3e93912020-06-18 16:06:24 -070018
19This gives a brief explanation of IREE specific CMake options and variables.
20
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070021#### `IREE_ENABLE_RUNTIME_TRACING`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070022
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070023Enables instrumented runtime tracing. Defaults to `OFF`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070024
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070025#### `IREE_ENABLE_MLIR`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070026
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070027Enables MLIR/LLVM dependencies. Defaults to `ON`. MLIR/LLVM dependencies are
28required when building the IREE compiler components. Therefore, the option is
29automatically set to `ON` if `IREE_BUILD_COMPILER` is set to `ON`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070030
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070031#### `IREE_ENABLE_EMITC`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070032
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070033Enables the build of the out-of-tree MLIR dialect EmitC. Defaults to `OFF`. To
34build the EmitC dialect, `IREE_ENABLE_MLIR` must be set to `ON`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070035
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070036#### `IREE_BUILD_COMPILER`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070037
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070038Builds the IREE compiler. Defaults to `ON`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070039
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070040#### `IREE_BUILD_TESTS`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070041
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070042Builds IREE unit tests. Defaults to `ON`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070043
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070044#### `IREE_BUILD_DOCS`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070045
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070046Builds IREE documentation. Defaults to `OFF`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070047
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070048#### `IREE_BUILD_SAMPLES`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070049
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070050Builds IREE sample projects. Defaults to `ON`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070051
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070052#### `IREE_BUILD_DEBUGGER`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070053
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070054Builds the IREE debugger app. Defaults to `OFF`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070055
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070056#### `IREE_BUILD_PYTHON_BINDINGS`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070057
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070058Builds the IREE python bindings. Defaults to `OFF`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070059
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070060#### `IREE_BUILD_EXPERIMENTAL`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070061
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070062Builds experimental projects. Defaults to `OFF`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070063
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070064#### `IREE_HAL_DRIVERS_TO_BUILD`:STRING
Marius Brehlerc3e93912020-06-18 16:06:24 -070065
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070066*This does not have any effect at the moment, but will be supported in the
67future!* Semicolon-separated list of HAL drivers to build, or `all` for building
68all HAL drivers. Case-insensitive. Defaults to `all`. Example:
69`-DIREE_HAL_DRIVERS_TO_BUILD="Vulkan;VMLA"`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070070
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070071#### `IREE_TARGET_BACKENDS_TO_BUILD`:STRING
Marius Brehlerc3e93912020-06-18 16:06:24 -070072
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070073*This does not have any effect at the moment, but will be supported in the
74future!* Semicolon-separated list of HAL drivers to build, or `all` for building
75all HAL drivers. Case-insensitive. Defaults to `all`. Example:
76`-DIREE_HAL_DRIVERS_TO_BUILD="Vulkan_SPIRV;VMLA"`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070077
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070078#### `IREE_ENABLE_LLD`:BOOL
Marius Brehlerc3e93912020-06-18 16:06:24 -070079
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070080Use lld when linking. Defaults to `OFF`. This option is equivalent to
81`-DIREE_USE_LINKER=lld`. The option `IREE_ENABLE_LLD` and `IREE_USE_LINKER` can
82not be set at the same time.
Marius Brehlerc3e93912020-06-18 16:06:24 -070083
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070084#### `IREE_MLIR_DEP_MODE`:STRING
Marius Brehlerc3e93912020-06-18 16:06:24 -070085
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070086Defines the MLIR dependency mode. Case-sensitive. Can be `BUNDLED`, `DISABLED`
87or `INSTALLED`. Defaults to `BUNDLED`. If set to `INSTALLED`, the variable
88`MLIR_DIR` needs to be passed and that LLVM needs to be compiled with
89`LLVM_ENABLE_RTTI` set to `ON`.
Marius Brehlerc3e93912020-06-18 16:06:24 -070090
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070091## MLIR-specific CMake Options and Variables
Marius Brehlerc3e93912020-06-18 16:06:24 -070092
Marius Brehlerc5c8b7c2020-06-22 14:38:05 -070093#### `MLIR_DIR`:STRING
94
95Specifies the path where to look for the installed MLIR/LLVM packages. Required
96if `IREE_MLIR_DEP_MODE` is set to `INSTALLED`.