Joe
Joe

Reputation: 181

Objective C on Windows or Linux

I would like to learn objective-c, but don't have a Mac.

How would I compile obj-c on Windows or Linux? I would prefer Windows, but Linux would be OK.

Upvotes: 8

Views: 2516

Answers (4)

user397362
user397362

Reputation: 59

If you just want to experiment, there's an Objective-C compiler for .NET (Windows) here: http://www.qckapp.com/index.html?p=ObjC

Upvotes: -1

taskinoor
taskinoor

Reputation: 46027

You can use gcc to compile objective c as suggested by the previous answers. But one thing is if you are planning this for iPhone development then mac is a must as the framework, simulator etc. are not available in other platforms.

Upvotes: 3

Sean McMillan
Sean McMillan

Reputation: 10093

GCC has an objective-C compiler. You may also want to investigate the GNUStep tools, which provide a clone of the OpenStep APIs (Which Cocoa is based on.)

Upvotes: 7

Kalle
Kalle

Reputation: 13346

http://gnustep.org/ -- no experience using it, but it might be worth a shot.

Upvotes: 1

Related Questions