tf.sysconfig.get_compile_flags

Returns the compilation flags for compiling with TensorFlow.

The returned list of arguments can be passed to the compiler for compiling against TensorFlow headers. The result is platform dependent.

For example, on a typical Linux system with Python 3.7 the following command prints ['-I/usr/local/lib/python3.7/dist-packages/tensorflow/include', '-D_GLIBCXX_USE_CXX11_ABI=1', '-DEIGEN_MAX_ALIGN_BYTES=64']

print(tf.sysconfig.get_compile_flags())

A list of strings for the compiler flags.