views:

79

answers:

1

What's the Clang preprocessor flag for Objective-C block support?

+1  A: 
__BLOCKS__

This dumps all the compiler defined macros:

clang -dM -E - < /dev/null
Ken
Thanks! It works!
Eonil
@Ken: Where is -dM documented? I'm not finding it in the man page nor in the User manual on the web site.
JUST MY correct OPINION