So, if you try to use nvcc when the system GCC is version 5 and up, you get an \"unsupported version\" error. But - I\'ve heard people report that they\'ve just commented this o
I think a -D_MWAITXINTRIN_H_INCLUDED
option should fix the issue. Actually I employed a slightly different approach, commenting out the #include
line in x86intrin.h
, and successfully built TensorFlow with CUDA 7.5 and GCC 5.2.1.
UPDATE
For the latest version of TensorFlow (v0.8.0), simply choose to use gcc 4.x when invoking the configure
script.