Search notes:
/usr/bin/cpp
The
preprocessor
.
cpp
is not bo be confused with
c++
.
The preprocessor is concerned with things like
macro expansion
removing comments
trigraph conversion
escaped newline splicing
processing of directives
Newer version of
gcc
don't invoke
/usr/bin/cpp
directly for preprocessing a translation unit. Rather, the preprocessing is performed by the
compiler proper
cc1
.
See also
gcc -fpreprocessed
/usr/bin
Index