Where can be found default settings for search path for headers in Ubuntu 11.04? This is for g++.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

From here:

By default, gcc searches the following directories for header files:

     /usr/include
     /usr/local/include
link|improve this answer
feedback

gcc also recognizes -isysroot where you specify the root of your header and other files

http://gcc.gnu.org/onlinedocs/gcc/Directory-Options.html#Directory-Options

link|improve this answer
feedback

This may be useful:
http://gcc.gnu.org/onlinedocs/gcc-4.1.1/cpp/Search-Path.html#Search-Path

link|improve this answer
<quote> You can add to this list with the -Idir command line option. All the directories named by -I are searched, in left-to-right order, before the default directories. The only exception is when dir is already searched by default. In this case, the option is ignored and the search order for system directories remains unchanged. </quote> – letsc Jun 24 '11 at 17:28
feedback

Your Answer

 
or
required, but never shown

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