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
When compiling with g++ 9.3.0 linking fails with:
/usr/lib/gcc/x86_64-pc-linux-gnu/9.3.0/../../../../x86_64-pc-linux-gnu/bin/ld: src/CMakeFiles/example.dir/__/libssp/example/libssp_test.cpp.o: in function `setup(imf::Loop*)': libssp_test.cpp:(.text+0x1c1): undefined reference to `imf::SspClient::SspClient(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, imf::Loop*, unsigned long, unsigned short, unsigned int)' collect2: error: ld returned 1 exit status
Changing the macro definition to #define _GLIBCXX_USE_CXX11_ABI 0 results in a successful compile and an executable that can be started.
#define _GLIBCXX_USE_CXX11_ABI 0
This is related to issue #1, only this time, the solution seems to be inverted.
The text was updated successfully, but these errors were encountered:
Same problem here. It seems that in 48f2921 the *.so file was compiled using either really old compiler or with _GLIBCXX_USE_CXX11_ABI=0.
_GLIBCXX_USE_CXX11_ABI=0
Can you please provide a libssp.so built with _GLIBCXX_USE_CXX11_ABI=1
_GLIBCXX_USE_CXX11_ABI=1
Sorry, something went wrong.
No branches or pull requests
When compiling with g++ 9.3.0 linking fails with:
Changing the macro definition to
#define _GLIBCXX_USE_CXX11_ABI 0
results in a successful compile and an executable that can be started.
This is related to issue #1, only this time, the solution seems to be inverted.
The text was updated successfully, but these errors were encountered: