Re: @property without @synthesize and variable declaration

2012-12-11 Thread Charalampos Emmanouilidis
Great! adding the flags "-Xclang -fobjc-default-synthesize-properties" did the trick On Dec 11, 2012, at 10:44 AM, David Chisnall wrote: > Yes. > > Anything that XCode can do in terms of Objective-C compilation, you can do > without XCode, because XCode uses an older version of the same

Re: @property without @synthesize and variable declaration

2012-12-11 Thread David Chisnall
Yes. Anything that XCode can do in terms of Objective-C compilation, you can do without XCode, because XCode uses an older version of the same compiler as us. The option to pass to clang is: -Xclang -fobjc-default-synthesize-properties I'm not sure why this isn't the default, but it probably

@property without @synthesize and variable declaration

2012-12-10 Thread Charalampos Chrysovalantis Emmanouilidis
Is it possible to let properties be synthesized automatically, just like Xcode does since 4.4? I want to port the ObjectiveC Framework Objective-Git (wrapper of libgit2) to build and run with GNUstep. https://github.com/libgit2/objective-git Objective-Git makes heavy use of automatically synthes