Is there any reason why you shouldn't use the "-std=c99" flag for compiling Objective-C programs on Mac? The one feature in C99 that I really like is the ability to declare variables anywhere in code, rather than just at the top of methods, but does this flag causes any problems or create incompatibilities for iPhone or Cocoa apps?
|
|
|
|
|
|
|
Compiled C99 binary code is binary-compatible with older C variants. The only downside is if you have to share code with other projects that aren't C99 (or GNU99). The same applies to Objective-C |
||
|
|
|
|
I've tried it myself on a small iPhone app, and it works. I've seen no problems with it. |
||
|
