|
Q: Is there any way to get a list of GCC's predefined macros?A: Enter this command line in your prefered terminal application to generate a list of GCC's predefined macros: gcc -arch ppc -dM -E - < /dev/null | sort Note: Other GCC command line options may effect the list of predefined macros. For example changing the architecture (-arch) from ppc to i386 will generate a different list of macros. Please refer to man gcc for a full explanation of the command line options. Document Revision History
Posted: 2005-07-06 |