查看gcc预定义宏(predefined macro)的方法

GNU C Compiler
gcc -dM -E - </dev/null
cpp -dM < /dev/null
HP-UXansi C compiler
cc -v fred.c(where fred.cis a simple test file)
SCO OpenServerC compiler
cc -## fred.c(where fred.cis a simple test file)
Sun StudioC/C++ compiler
cc -## fred.c(where fred.cis a simple test file)
IBM AIXXL C/C++ compiler
cc -qshowmacros -E fred.c(where fred.cis a simple test file)

你可能感兴趣的:(gcc)