码迷,mamicode.com
首页 > 系统相关 > 详细

Linux Object-C 编译环境安装

时间:2016-05-23 06:47:50      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:

sudo apt-get install gnustep
sudo apt-get install gnustep-devel
sudo apt-get install gobjc
. /usr/share/GNUstep/Makefiles/GNUstep.sh
#import <Foundation/Foundation.h>
 
int main (int argc, const char * argv[])
{
        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
 
        NSLog (@"hello world");
        [pool drain];
        return 0;
}
gcc `gnustep-config --objc-flags` -lgnustep-base hello.m -o hello
./hello

  Linux Object-C 编译环境安装


原文:http://www.techotopia.com/index.php/Installing_and_Using_GNUstep_and_Objective-C_on_Linux

Linux Object-C 编译环境安装

标签:

原文地址:http://www.cnblogs.com/findumars/p/5518595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!