Linux Object-C 编译环境安装
Posted 朝闻道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux Object-C 编译环境安装相关的知识,希望对你有一定的参考价值。
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 |
原文:http://www.techotopia.com/index.php/Installing_and_Using_GNUstep_and_Objective-C_on_Linux
以上是关于Linux Object-C 编译环境安装的主要内容,如果未能解决你的问题,请参考以下文章
关于UNIX/Linux下安装《UNIX环境高级编程》源代码的问题