Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What language was Xcode written in? [closed]

Tags:

xcode

ide

Any clue which language Xcode IDE is written in?

like image 540
Abhinav Avatar asked Oct 14 '11 21:10

Abhinav


2 Answers

C, C++, Objective-C and Objective-C++ (ordered alphabetically). Omitting external tools Xcode serves as a front end for and libraries which are not unique to the Xcode toolkit, I don't know of other languages they use in the app itself. This is also the norm for other related apps (e.g. Instruments).

The current version uses Garbage Collection for Objective-C and Objective-C++.

External components such as Clang and Xcode's indexer are written predominantly in C++.

like image 113
justin Avatar answered Oct 17 '22 15:10

justin


I second the guess, most likely Objective-C since all the Cocoa frameworks link natively. GNUstep's Gorm (Interface Builder lookalike) is certainly written in Objective-C http://en.wikipedia.org/wiki/Gorm_(computing). Curiously, though, it appears that NeXTStep's Interface Builder was originally written in Lisp if Wikipedia is to be believed http://en.wikipedia.org/wiki/Interface_Builder.

like image 40
gkuan Avatar answered Oct 17 '22 17:10

gkuan