NSAutoreleasePool is unavailable
The compiler is being asked to compile the file with ARC (automatic reference counting) enabled. Turn that off or, better yet, modernize your example: int main (int argc, const char * argv[]) { @autoreleasepool { NSLog (@”Programming is fun!”); } return 0; } (No, I can’t tell you how, specifically, to turn off ARC, if … Read more