Pankaj Kainthla
Pankaj Kainthla

Reputation: 2489

Can we compile objective c on windows?

Can we compile objective c on windows platform?

Upvotes: 1

Views: 361

Answers (2)

ergosys
ergosys

Reputation: 49009

If your framework needs are basic, you can try cocotron, but I understand it is not yet "there" in many areas. http://www.cocotron.org/

Upvotes: 2

Steven Schlansker
Steven Schlansker

Reputation: 38526

Quick answer: no, not to any useful degree.

Long answer: Objective-C is just a standard language, and GCC compiles it just fine. But when most people talk about Objective-C, they are including Apple's (formerly NEXTstep) libraries, as the bare language isn't too useful without them. There are projects around to let you use these libraries on non-Mac systems, for example GNUstep, but from my experience they are immature and more trouble than they are worth. I haven't looked recently, but I wouldn't spend too much effort trying to get it to work.

Upvotes: 11

Related Questions