2011年9月30日 星期五

Obijective-C 安裝GNUStep於Windows系統 教學

1.安裝  Objective-C for Windows

下載0.28.1-setup.exe
下載0.28.0-setup.exe
下載1.3.0-setup.exe
下載0.22.1-setup.exe
下載cygwin

空間下載
檔案下載完後逐步安裝





2-1 將範例檔存成XXXXX.m 放在某一槽的新增資料夾
#include 
@interface Greeter:Object
{
  /* This is left empty on purpose:
  ** Normally instance variables would be declared here,
  ** but these are not used in our example.
  */
}
- (void)greet;
@end
#include 
@implementation Greeter
- (void)greet
{
printf("Hello, World!\n");
}
@end
#include 
int main(void)
{
id myGreeter;
myGreeter=[Greeter new];
[myGreeter greet];
[myGreeter free];
return EXIT_SUCCESS;
}


2-2  將範例存成makefile 和 XXXXX.m 放在同一個資料夾內
all:
 gcc hello.m -o hello.exe -I /GNUstep/System/Library/Headers
 -fconstant-string-class=NSConstantString
 -L /GNUstep/System/Library/Libraries -lobjc
 -lgnustep-base -Xlinker --enable-auto-import
 


3.執行 Shell 編譯XXXXX.m檔


成功編譯




沒有留言:

張貼留言

請提供您寶貴的意見

熱門文章