vote up 3 vote down star
1

I'm trying to work through Apple's CoreData Utility Tutorial. It asks me to create a 'Foundation Tool' project in the 'Command Line Utility' section. In XCode 3.2, I only found a 'Command Line Tool' section with a 'Foundation' type in the 'New Project' wizard.

So I created the 'Command Line Tool' 'Foundation' type project, and added the following line to enable garbage collection:

objc_startCollectorThread();

I also changed the 'Objective-C Garbage Collection' setting in my 'Target Info' 'Build' tab to 'Required [-fobjc-gc-only]'. When I run my build, I get the following error:

warning: implicit declaration of function 'objc_startCollectorThread'

The target runs fine so far. All it does is print 'Hello World' to the console. I'm just concerned about this warning. I must be doing something wrong if I'm getting warnings for something as basic as garbage collection on a command line tool.

flag
Why did you make this a community wiki question? Careful with that checkbox, it can destroy the incentive for people to answer your question... – Quinn Taylor Sep 15 at 16:29
1  
I thought community wiki meant others could edit the question. – Heath Borders Sep 16 at 2:21
What are good resources besides stackoverflow for objc questions? I googled for 10 minutes about this, and I would think that something this simple would be easily found on google. – Heath Borders Sep 16 at 2:25

1 Answer

vote up 6 vote down check

You should #include <objc/objc-auto.h>, which is where this function is defined.

link|flag
Or #import instead. Either way, +1 for the good answer. – Quinn Taylor Sep 15 at 17:17
I think the typical convention is to #include C headers (like this one) and #import Objective-C headers. – kperryua Sep 16 at 2:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.