Compiling Objective-C app for Linux (API coverage)

不羁的心 提交于 2019-12-21 19:55:10

问题


I might be asking something strange here, but I'm unsure where to begin. The thing is that I am considering writing a command line tool on a Mac using Obj-C and the Foundation classes.

But there is a very big risk that I would like to be able to compile it for different Linux distributions to run as a server app in the future.

I understand that it is not a problem in itself to compile Objective-C for Linux, but what I don't understand is the API coverage.

As I have understood it so far I can use GNUStep to compile for linux, but is there a good way for me to get an overview of the API coverage? What I mean is, if I use a class that has been added to the Foundation framework in OSX Lion lets say, how big is the risk of that not being available in GNUStep at that time?

I hope I am asking a question that you guys can understand, basically I want to avoid writing an app that can theoretically be compiled for linux, but not in practice because of missing classes etc.

Thanks!


回答1:


An opinion: The risk is fairly high. GNU Step is an open source project and dependant on its volunteers to keep it up to date. OS X Lion has a small number of additions to Foundation and AppKit.

Your best option if you want it for *nix in the future will be to write it in generic C/C++ and then thinly wrap it in an NSTask if you want a GUI.




回答2:


You should be able to check if the API's you're using are available by consulting the GNUStep base API docs.

You may want to target GNUStep as your base if compatibillity is a big concern. Compiling for mac should then be rather trivial, compared to moving the code the other way. Of course you always have the option of helping inplement whatever is missing from GNUStep too.



来源:https://stackoverflow.com/questions/9664855/compiling-objective-c-app-for-linux-api-coverage

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!