Files
concrete/compiler/include/zamalang/Support/LLVMEmitFile.h
2021-11-30 17:42:28 +01:00

15 lines
371 B
C++

#ifndef ZAMALANG_SUPPORT_LLVMEMITFILE
#define ZAMALANG_SUPPORT_LLVMEMITFILE
namespace mlir {
namespace zamalang {
llvm::Error emitObject(llvm::Module &module, std::string objectPath);
llvm::Error emitLibrary(std::vector<std::string> objectsPath,
std::string libraryPath, std::string linker);
} // namespace zamalang
} // namespace mlir
#endif