vote up 6 vote down star
2

I'd like gcc to include files from $HOME/include in addition to the usual include directories, but there doesn't seem to be an analogue to $LD_LIBRARY_PATH. I know I can just add the include directory at command line when compiling (or in the makefile), but I'd really like a universal approach here, as in the library case.

flag

3 Answers

vote up 12 vote down check

Try setting C_INCLUDE_PATH (for C header files) or CPLUS_INCLUDE_PATH (for C++ header files).

More details here.

link|flag
vote up 1 vote down

Create an alias for gcc with your favorite includes.

alias mygcc='gcc -I /whatever/'

link|flag
vote up 1 vote down

A gcc spec file can do the job, however all users on the machine will be affected.

See here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.