2012年5月22日 星期二

Objective-C's Hello World 在 Windows Platform - 2

此為接續 Objective C 在 Windows Platform 這篇

1. 首先,利用記事本 或 自己習慣的編輯器,鍵入下列程式碼:

image

隨後將檔案儲存至 C:\GNUstep\msys\1.0\home\[Username] 下,這裡儲存為 world.m。
Username 視自己的使用者名稱

 

2. 在 Shell 裡,ls 一下

   應該可以看到自己 world.m 剛剛存的那個檔案

imageimage

 

3. 接下來同 Step.1,再撰寫一個 GNUmakefile,內容在下:
    同樣存在 C:\GNUstep\msys\1.0\home\[Username] 下,
   
取名為 GNUmakefile

image

 

4. 在 shell 鍵入 make CC=clang

image

 

5. 之後,會出現一個 obj 資料夾,
  
在裡頭就有 hello.exe 的檔案,可以執行看看

imageimage

 

6. 成功

image


注意:

image

兩個必須要相同一致,否則 make 時會發生錯誤。(Step 3)

makefile 的檔案檔名一定要為 GNUstep(Step 3)

make 後面一定要加 CC=clang 這個參數 (Step 4)

沒有留言:

張貼留言