Merge branch 'master' into iree
tree: f440a3c9a9fadca03787336a35a836f04bf507ea
  1. include/
  2. lib/
  3. test/
  4. tools/
  5. .clang-format
  6. .gitignore
  7. CMakeLists.txt
  8. LICENSE
  9. README.md
README.md

MLIR EmitC

MLIR dialect to emit C++ code, forked from https://reviews.llvm.org/D76571.

Building

This setup assumes that you have built LLVM and MLIR in $BUILD_DIR and installed them to $PREFIX. To build and launch the tests, run

mkdir build && cd build
cmake -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ .. -DMLIR_DIR=$PREFIX/lib/cmake/mlir -DLLVM_EXTERNAL_LIT=$BUILD_DIR/bin/llvm-lit
cmake --build . --target check-emitc

Note: Make sure to pass -DLLVM_INSTALL_UTILS=ON when building LLVM with CMake in order to install FileCheck to the chosen installation prefix.