|
From: | Andreas Höschler |
Subject: | Re: Linking frameworks does not work |
Date: | Wed, 2 May 2018 15:45:01 +0200 |
Hi Wolfgang,
int main (int argc, const char **argv, char** env) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; [NSApplication sharedApplication]; controller = [[Controller alloc] init]; NSLog(@"controller %@", controller); [NSApp setDelegate:controller]; [NSString stringByChaining:@"ass" count:3]; ... [pool release]; return NSApplicationMain (argc, argv); } make I get a resulting app and starting it leads to "NSString does not recognize selector stringByChaining:count: exception. When I instead build with make shared=no I get ... /usr/bin/ld: cannot find -lSRFoundation ... and buolding the app fails!??? Thanks, Andreas |
[Prev in Thread] | Current Thread | [Next in Thread] |