mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-13 14:14:55 -05:00
15 lines
371 B
C++
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 |