[objective-c] win下搭建Objective-c開發環境

來源:互聯網
上載者:User

GNUstep

  首先,目前windows下沒有Objective-C的IDE存在,ObjectiveEClipse是一款可選擇的外掛程式,搭配Eclipse3.5+CDT6.0,但是已經停止更新。GNUstep是提供類似Cocoa(蘋果OS的開發架構)的API和工具,目前支援GNU/Linux and GNU/HURD, Solaris, NetBSD, OpenBSD, FreeBSD, Darwin和Windows,免費使用。這個項目使Objective C能在多數流行平台上開發和運行。

  在Windows下搭建Objective C開發環境,需要到GNUstep官方網站上下載,四個軟體包:GNUstep MSYS System、GNUstep Core、GNUstep Devel、Cairo Backend。其中,前兩個軟體包是必須要安裝的,第三個軟體包是安裝一些開發工具,比如:gcc、g++等,所以如果是學習Objective C的話,這個包也是必須要安裝,第四個軟體包是安裝glib等庫,這個包安裝不安裝根據具體情況而定。安裝路徑不建議出現中文,安裝後在環境變數PATH中增加: C:\GNUstep\GNUstep\System\Tools;C:\GNUstep\bin;C:\GNUstep\mingw\bin,安裝後運行GNUstep shell也就是安裝目錄下的msys.bat。測試一下gcc與make命令。

測試程式 

1  #import <Foundation/Foundation.h>
2 int main (int argc, const char *argv[]) {
3 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
4 NSLog(@"Hello World!");
5 [pool drain];
6 return 0;
7 }

編譯連結

 1:直接gcc編譯連結方式

  gcc -o test test.m -I /GNUstep/System/Library/Headers -L /GNUstep/System/Library/Libraries -lobjc -lgnustep-base -fconstant-string-class=NSConstantString

  其中:

    -I /GNUstep/System/Library/Headers  指明編譯期間標頭檔包含目錄

    -L /GNUstep/System/Library/Libraries 指明串連的庫檔案

    -lobjc連結屬性,這樣就不必顯示的連結libobjc.a庫,gcc收到這個連結屬性會為我們完成這些事。

    -fconstant-string-class=NSConstantString指定常量字串類型為NSConstantString

2:GNUmakefile方式

  寫GNUmakefile如下:

  GNUSTEP_MAKEFILES=/GNUstep/System/Library/Makefiles
  include $(GNUSTEP_MAKEFILES)/common.make
  TOOL_NAME = test
  test_OBJC_FILES = ./main.m
  include $(GNUSTEP_MAKEFILES)/tool.make

 註:其中TOOL_NAME定義為工程名稱test,test_OBJC_FILES定義編譯檔案清單

   在GNUmakefile目錄下執行make命令,得到可執行檔。

3:搭配IDE,選用CodeBlocks

編譯器設定

 使用GNUStep安裝的gcc,在C:\GNUstep\bin目錄下。

1)   Settings->Compiler and debugger...

2)   選擇GNU GCC Compiler點擊copy,重新命名,例如"GNU GCC Obj-C Compiler"

3)   設定GNU GCC CompilerToolchain executables路徑為C:\GNUstep\bin,也就是GNUstep的gcc所在目錄。

4)   Compile settings->Other options添加-fconstant-string-class=NSConstantString

5)    Linker Settings->Other Link Options中添加-lobjc -lgnustep-base選項。

  如果出現問題,則可以選用另一種方式,去掉-lobjc -lgnustep-base選項,在Linker Settings->Link libraries中添加:

  C:/GNUstep/GNUstep/System/Library/Libraries/libobjc.dll.a  

  C:/GNUstep/GNUstep/System/Library/Libraries/libgnustep-base.dll.a

6)   Search directories->Complier添加標頭檔目錄: C:\GNUstep\GNUstep\System\Library\Headers

 

添加源檔案格式支援 1) Environment... 選擇 Files extension handling添加  *.m*.mm 2) Project->Project tree, file types & categories... Source中添加*.m和*.mm 高亮顯示1)  Settings->Editor-> Syntax highlighting

2) 選擇Filemasks...,添加*.m和*.mm

3) 選擇 Keywords... 添加Keywords到列表框中

Keywords:

@interface @implementation @end @class @selector @protocol @public @protected @private id BOOL YES NO SEL nil NULL self

設定為可編譯連結1) .m檔案右鍵->Properties

2) 選擇build,選中 Compile file 和 Link file

3) 選擇general,去除對File is read-only的選中

4) 注意,.h檔案不要設定Compile file 和 Link file

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.