r2inference
r2inference copied to clipboard
Unable to set multiple include paths in autogen script
Setting flags CXXFLAGS=”-I$(TensorflowPath) -I$(FOO)" always fails. I had to set the C_PLUS_PATH environment variable to get multiple include directories set.
I believe this is more of a shell problem, where the quotes get lost when the autogen.sh passes the flags to the configure. Can you try out disabling the configure automatic call?
NOCONFIGURE=1 ./autogen.sh
./configure CXXFLAGS=”-I$(TensorflowPath) -I$FOO"
I think I misread your issue report. @tvlenin can you validate this?