You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Fedora23 using Anaconda 2/3 I'm getting an import error on sasl.saslwrapper with an undefined symbol _ZTVNSt7__cxx1118basic_stringstreamIcSt11char_traitsIcESaIcEEE. This prevents other libraries like pyhive from being used
The text was updated successfully, but these errors were encountered:
@andrewbenton Fedora 23 ships with GCC 5.x, which has a new std::string ABI -- did you build this library from source? We may need to add -D_GLIBCXX_USE_CXX11_ABI=0 to this package build. Any other info about your environment I can try to advise on how to fix
I built it from source since it wasn't packaged with anaconda. I found later that when I run the built version with the system version of python, it works. What other information would you find useful?
Got it. Yes, this means you need to build any C++ code with the flag "-D_GLIBCXX_USE_CXX11_ABI=0" if you're using it with Anaconda — you can use the approach from here
On Fedora23 using Anaconda 2/3 I'm getting an import error on
sasl.saslwrapper
with an undefined symbol_ZTVNSt7__cxx1118basic_stringstreamIcSt11char_traitsIcESaIcEEE
. This prevents other libraries like pyhive from being usedThe text was updated successfully, but these errors were encountered: