(reminder) 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 -dM -E - < /dev/null | sort

seen here : http://developer.apple.com/mac/library/qa/qa2005/qa1424.html

Leave a Reply