在Centos-5下安装Objective-C的编译环境
1. 安装gcc的objc编译功能:
$ yum -y install gcc-objc
2. 从http://wwwmain.gnustep.org下载GNUstep Startup和GNUstep Base,并从源码进行安装。
3. 把gnustep tools目录加入到系统目录下(默认是/usr/GNUstep/System/Tools)
$ export PATH=$PATH:/usr/GNUstep/System/Tools
4. 把编译好的库放在ldconfig的配置文件
$ echo "/usr/GNUstep/Local/Library/Libraries/" >> /etc/ld.so.conf $ ldconfig
5. 进行编译objective-c.m文件
$ gcc `gnustep-config --objc-flags` -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base hello.m -o hello
6. 运行程序
可以参考http://www.techotopia.com/index.php/Building_and_Installing_GNUstep_on_Linux
相关推荐
jiangtie 2020-08-15
xushxbigbear微信 2020-05-16
chenchuang 2020-05-10
89467505 2020-05-08
playis 2020-05-04
ningningmingming 2020-05-01
LychieFan 2020-04-30
spartmap 2020-04-20
jeonkc 2020-04-19
clamzxf 2020-04-02
linuxalienyan 2020-02-26
hazing 2020-02-22
insularisland 2020-02-16
citic 2020-01-30
maclinuxye 2013-06-09
滴水穿石点石成金 2020-11-12
wanshiyingg 2020-09-29
wuShiJingZuo 2020-09-25