mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-10 04:35:03 -05:00
feat: add runtimeLib link for library compilation
runtime library will be linked to compiled library
This commit is contained in:
@@ -66,8 +66,10 @@ jit_server_call(JITSupport_C support, mlir::concretelang::JITLambda &lambda,
|
||||
}
|
||||
|
||||
// Library Support bindings ///////////////////////////////////////////////////
|
||||
MLIR_CAPI_EXPORTED LibrarySupport_C library_support(const char *outputPath) {
|
||||
return LibrarySupport_C{mlir::concretelang::LibrarySupport(outputPath)};
|
||||
MLIR_CAPI_EXPORTED LibrarySupport_C
|
||||
library_support(const char *outputPath, const char *runtimeLibraryPath) {
|
||||
return LibrarySupport_C{
|
||||
mlir::concretelang::LibrarySupport(outputPath, runtimeLibraryPath)};
|
||||
}
|
||||
|
||||
std::unique_ptr<mlir::concretelang::LibraryCompilationResult>
|
||||
|
||||
Reference in New Issue
Block a user