We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sample-cpp-plugin-master/./psdk/loader.hpp:55: Plugin::Plugin(std::string): Assertion `m_hnd != nullptr' failed. Aborted (core dumped)
May I know, why this issue is generated. I am running on Linux Ubuntu machine. gcc version is 9.3
The text was updated successfully, but these errors were encountered:
Update : in loader.hpp : 50 if I change m_hnd = dlopen(m_file.c_str(), RTLD_LAZY); to m_hnd = dlopen("./PluginA.so", RTLD_LAZY); it works.
m_hnd = dlopen(m_file.c_str(), RTLD_LAZY);
m_hnd = dlopen("./PluginA.so", RTLD_LAZY);
Sorry, something went wrong.
Same with you. Fix the so file path。
No branches or pull requests
sample-cpp-plugin-master/./psdk/loader.hpp:55: Plugin::Plugin(std::string): Assertion `m_hnd != nullptr' failed.
Aborted (core dumped)
May I know, why this issue is generated.
I am running on Linux Ubuntu machine.
gcc version is 9.3
The text was updated successfully, but these errors were encountered: