首页 > 代码库 > Ubuntu14.04 Objective-C hello world
Ubuntu14.04 Objective-C hello world
1. Install GNUstep
?
1 | sudo apt - get install gnustep gnustep - devel |
2. Write hello world program, and save as hello.m
?
1 2 3 4 5 6 7 8 9 10 | #import <Foundation/Foundation.h> int main ( int argc, const char * argv[]) { NSAutoreleasePool * pool = [[ NSAutoreleasePool alloc] init]; NSLog (@ "hello world" ); [pool drain]; return 0; } |
3. Set GNUstep compile enviroment
?
1 | . /usr/share/GNUstep/Makefiles/GNUstep.sh |
4. Compile
?
1 | gcc hello.m `gnustep-config --objc-flags` `gnustep-config --objc-libs` -lobjc -lgnustep-base -o hello |
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。