Any pointers how can we debug an application in the release mode, its crashing even a first line it self , below is the code snippet

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    // Insert code here to initialize your application

    debugLog<<" inside app did finish launching "<<endl;

    **// here its crashing**        
    [self InitAppController];

    [AppUtil createAppMacFolder];


}
有帮助吗?

解决方案

not sure what was the problem,
But when i set the optimization level to 0 was working fine,

enter image description here

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top