Open rcilla opened 7 years ago
I just found that when compiling tensorflow with gcc 6.3.0 - without cuda support - the error is not produced. It only appears when compiling wiht gcc-4.9 and cuda support
_ZN10tensorflow7strings6StrCatB5cxx11ERKNS0_8AlphaNumE
Looks like tensorflow::strings::StrCat
is missing. This error seems to come from the string interface change in GCC from GCC 4.x to 5.x.
https://developers.redhat.com/blog/2015/02/05/gcc5-and-the-c11-abi/
I have succesfully compiled tensorflow r1.1 and fold in my linux machine with gcc-4.9 but python is not able to load tensorflow:
Note the symbol not found is different from the one reported in #57