Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a list of pragmas supported in Xcode?

Tags:

xcode

gcc

pragma

Is there a list of pragmas supported in Xcode? I only know of #pragma mark. Where would I look to learn about any others?

like image 977
nall Avatar asked Oct 03 '09 21:10

nall


1 Answers

GCC online manual, see here. Depending on your XCode settings, you can use GCC 4.0, 4.2, 4.4 (if present on your system) or even LLVM/GCC 4.2. Please refer to proper compiler version docs for specific information.

like image 153
ZZambia Avatar answered Nov 18 '22 02:11

ZZambia