vote up 0 vote down star

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?

flag

2 Answers

vote up 3 vote down check

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

link|flag
vote up 2 vote down

I've tried it myself on a small iPhone app, and it works. I've seen no problems with it.

link|flag
Cool, thanks for trying it – Andy White Apr 9 at 3:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.