ubuntu 下 object-c环境配置与hello world 编译
1、安装相关包
sudo apt-get install build-essential gnustep gobjc gnustep-make libgnustep-base-dev gnustep-devel
2、编译hello.m 文件
gcc `gnustep-config --objc-flags` hello.m -o hello -lgnustep-base
注意:1、“`” 不是单引号
2、-lgnustep-base 在某些编译器上可能需要放到编译文件的后面,原因是需要先知道源文件引用的库,才可以从链接库中获取对应的
3、需要引用链接库
相关链接:
http://www.eifr.com/article.php?id=1927
http://blog.sina.com.cn/s/blog_a5b979d3010193gy.html