GCC has this attribute called abi_tag that they put on any function that returns std::string or std::list
The usual workaround is compiling the C++ source with _GLIBCXX_USE_CXX11_ABI=0 for gcc >= 5.
kinke via Digitalmars-d-learn Sat, 29 Apr 2017 12:21:34 -0700
GCC has this attribute called abi_tag that they put on any function that returns std::string or std::list
The usual workaround is compiling the C++ source with _GLIBCXX_USE_CXX11_ABI=0 for gcc >= 5.