歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux基礎知識

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
Copyright © Linux教程網 All Rights Reserved