avee
avee

Reputation: 776

Is it possible to use Xcode for Linux Development?

My team is planning to start development on linux platform. Previously we have been developing C++ applications in Windows using MS Visual Studio. And recently, I fell in love with Mac OSX and use it as my personal development machine.

The question is once again: Is it possible to use Xcode for Linux Development?

The applications we are building are real-time applications, which do not require fancy looking GUIs or advanced user interaction, the focus is on the performance.

Upvotes: 3

Views: 3205

Answers (2)

uray
uray

Reputation: 11572

I think it is possible since both xcode and linux are using gcc and could use similar development toolkits, and both osx and linux are unix based, therefore you can debug and code on osx, but I think you still need to recompile your apps on deployment O/S ( so make sure you're using portable codes between osx and linux)

Upvotes: 1

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798744

As long as you stick to cross-platform interfaces (glibc, POSIX, STL, etc.), sure. You might need a Linux machine to actually build the binaries for Linux though.

Upvotes: 3

Related Questions