Ubuntu 10.04 에 Objective-C 개발 환경 구축

http://bbs.sciencenet.cn/blog-47522-503760.html
1.설치 환경
sudo apt-get install gnustep*
2.코드 작성
hello.m:
1 #import <Foundation/Foundation.h>
  2 
  3 int main(int argc, const char *argv[]) {
  4 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  5 NSLog(@"aaa");
  6 //NSLog(@”Hello world
”); 7 [pool drain]; 8 return 0; 9 }

3.컴 파일
gcc hello.m `gnustep-config --objc-flags`  -lgnustep-base  -o hello
4.실행
./hello
ps:
Makefile:
 hello:
          gcc hello.m `gnustep-config --objc-flags`  -lgnustep-base  -o hello
 
 clean:
         rm hello *.d

좋은 웹페이지 즐겨찾기