mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 12:15:09 -05:00
fix: set rpath when linking using extra args
This commit is contained in:
@@ -37,7 +37,7 @@ DynamicModule::loadSharedLibrary(std::string path) {
|
||||
libraryHandle = dlopen(
|
||||
CompilerEngine::Library::getSharedLibraryPath(path).c_str(), RTLD_LAZY);
|
||||
if (!libraryHandle) {
|
||||
return StringError("Cannot open shared library") << dlerror();
|
||||
return StringError("Cannot open shared library ") << dlerror();
|
||||
}
|
||||
return outcome::success();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user