摘要: 1、安装相关包 sudo apt-get install build-essential gnustep gobjc gnustep-make libgnustep-base-dev gnustep-devel2、编译hello.m 文件 gcc `gnustep-config --objc-flags` hello.m -o hello -lgnustep-base注意:1、“`” 不是单引号 2、-lgnustep-base 在某些编译器上可能需要放到编译文件的后面,原因是需要先知道源文件引用的库,才可以从链接库中获取对应的 3、需要引用链接库相关链接:http://www.eifr... 阅读全文
posted @ 2013-03-02 11:47 lipeil 阅读(425) 评论(0) 推荐(0) 编辑