Re: linking error

2009-06-25 Thread WT
NSString* const someString = @"foo"; in SharedDefs.m If you have no SharedDefs.m just crete one ;) atze Am 25.06.2009 um 10:44 schrieb WT: Hello list, I have a linking error that is puzzling me and I'd be grateful for some enlightenment. In AppDelegate.h: #impor

Re: linking error

2009-06-25 Thread WT
On Jun 25, 2009, at 11:46 AM, WT wrote: On Jun 25, 2009, at 11:38 AM, Dave Keck wrote: The link error is pretty self-explanatory. To solve issues like this, I'd first change the header like so: extern NSString *const someString; and create a SharedDefs.m: NSString *const someString = @"

Re: linking error

2009-06-25 Thread WT
On Jun 25, 2009, at 11:38 AM, Dave Keck wrote: The link error is pretty self-explanatory. To solve issues like this, I'd first change the header like so: extern NSString *const someString; and create a SharedDefs.m: NSString *const someString = @"halla"; This way, any object file can r

Re: linking error

2009-06-25 Thread Alexander Spohr
25.06.2009 um 10:44 schrieb WT: Hello list, I have a linking error that is puzzling me and I'd be grateful for some enlightenment. In AppDelegate.h: #import "SharedDefs.h" In AppDelegate.m: #import "AppDelegate.h" #import "SomeClass.h" In SomeClass.m:

Re: linking error

2009-06-25 Thread Dave Keck
The link error is pretty self-explanatory. To solve issues like this, I'd first change the header like so: extern NSString *const someString; and create a SharedDefs.m: NSString *const someString = @"halla"; This way, any object file can reference someString, but only one object file wi

linking error

2009-06-25 Thread WT
Hello list, I have a linking error that is puzzling me and I'd be grateful for some enlightenment. In AppDelegate.h: #import "SharedDefs.h" In AppDelegate.m: #import "AppDelegate.h" #import "SomeClass.h" In SomeClass.m: #import "SomeClass.h"

__setjmp linking error in Leopard

2008-03-19 Thread Steve Cronin
Folks; I'm trying to build a test case for a DTS support incident regarding an issue I posted earlier concerning CoreData in Leopard. I have an existing app which compiles without inicident on both Tiger & Leopard. To build the DTS test project, in Leopard I added the data model and sever