I've seen plenty of information on how to link an Objective-C application to C++ libraries, but can you do the other way around?
My partners and I have been working on an iPhone App using entirely Objective-C. Half way through the project, we decide to add a new feature to it. This feature will require Push Notifications, so we need to write the server-side application that will be running on a Linux box. This server app needs access to some (most, actually) of the code written in Objective-C. I figure we have two choices: re-write the whole thing in C/C++ or re-compile the Objective-C code on Linux. As rewriting would take too long, I'd like to take the second route.
I managed to use GCC and GNUstep to compile the Objective-C classes we'll need for the linux server app into a static library. I'd like to write the actual server app in C++, but I need to link that app to the Objective-C library. Can it be done? How?
If not, can anyone give me an idea of how to go about this?
.mfile and call whatever c functions you defined there? – Michael Krelin - hacker Jan 25 '12 at 19:57.mm? Either way, what you're saying is that all my source files for the server-side linux app will have to be compiled by the GCC Objective-C frontend? Can't I name my filessomething.cppand link them to the Objective-C library (-lMyObjCLib)? – Danilo Carvalho Jan 25 '12 at 20:45.mshould do. And no, I think you can call plaincfunction defined in.mfile from.cor.cc(or.cpp) file. It's just the interfacing part that should be.m. – Michael Krelin - hacker Jan 25 '12 at 20:48