c++gccg++

Does anyone know what the "-FC" option does in gcc g++?


Does anyone know what the "-FC" option does in g++?

I have it in my SConstruct script that builds the command line g++ command, I have searched google


Solution

  • You know, if all fails, read the manual :-).

    Fdir

    Add the framework directory dir to the head of the list of directories to be searched for header files. These directories are interleaved with those specified by -I options and are scanned in a left-to-right order. [...]

    Source: http://gcc.gnu.org/onlinedocs/gcc-4.4.3/gcc/Darwin-Options.html#Darwin-Options

    So -FC will apparently add the framework directory "C" to the header file search path.