views:

99

answers:

1

I know it's part of gcc but is it useable on Windows? The (core) runtime with its garbage collector does seem to be pretty complicated to port so i doubt it will be portable by coincidence. I don't want any Cocoa stuff just the pure metal basic support.

What about other unix versions Solaris/FreeBSD/AIX/HP-UX ?

A: 

Yes, see this question: http://stackoverflow.com/questions/56708/objective-c-for-windows

You may need to use GNUStep or another system in order to have the garbage collection work. You don't have to use garbage collection in Obj C 2.0 alternatively.

Chris