Open GoogleCodeExporter opened 9 years ago
Hi! solved this problem by exporting flags:
export CXXFLAGS=-I/usr/include/clang/3.2/include
export CFLAGS=-I/usr/include/clang/3.2/include
Original comment by djd...@gmail.com
on 27 Sep 2013 at 11:14
Don't do this, it's dangerous and may break Makefiles, configure scripts and so
on.
Better use the C_INCLUDE_PATH and CPLUS_INCLUDE_PATH environment variables.
export C_INCLUDE_PATH="path_to_float.h:$C_INCLUDE_PATH"
export CPLUS_INCLUDE_PATH="path_to_float.h:$CPLUS_INCLUDE_PATH"
Put this into your ~/.profile .
Original comment by t.poecht...@gmail.com
on 5 Nov 2013 at 8:12
Original issue reported on code.google.com by
djd...@gmail.com
on 26 Sep 2013 at 3:18