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

GNU C Compiler
gcc -dM -E - < /dev/null
cpp -dM  < /dev/null
HP-UX ansi C compiler
cc -v fred.c (where  fred.c is a simple test file)
SCO OpenServer C compiler
cc -## fred.c (where  fred.c is a simple test file)
Sun Studio C/C++ compiler
cc -## fred.c (where  fred.c is a simple test file)
IBM AIX XL C/C++ compiler
cc -qshowmacros -E fred.c (where  fred.c is a simple test file)
 
 
 
 

引用:http://blog.csdn.net/jubincn/article/details/6901747

你可能感兴趣的:(查看gcc预定义宏(predefined macro)的方法 .)