在Windows上使用GNUstep和Objective-C

來源:互聯網
上載者:User

 In addition to using Objective-C on a Mac system, it is also possible to download and install the GNUstep and Objective-C environments for Microsoft's Windows family of operating systems. In this chapter we will explore the steps involved in downloading, installing
and testing both Objective-C and GNUstep on Windows.

Contents

[hide]

  • 1Downloading the GNUstep Packages
  • 2Installing MinGW and GNUstep on Windows
  • 3Running the GNUstep Shell
  • 4Testing the Installation

Downloading the GNUstep Packages

The GNUstep environment is made available on Windows using a toolkit called MinGW. MinGW is an abbreviation ofMinimal GNU for Windows and essentially provides a port of the GNU compiler collection, including Objective-C support, and a minimal shell
environment for Windows platforms. Installation of GNUstep involves installing both MinGW and GNUstep. Both of these packages are available from the GNUstep web site at

http://www.gnustep.org/experience/Windows.html.

The MinGW package is contained in the GNUstep System download and the GNUstep core is contained, unsurprisingly, in theGNUstep Core download. Both must be downloaded before proceeding with the installation.

[edit]Installing
MinGW and GNUstep on Windows

Once the required packages have been downloaded, locate the GNUstep System file and launch it to initiate the installation process. To complete the installation, simply follow the prompts in the installation wizard, using the default installation settings
unless you have specific requirements. In particular, should you decide to install the package in a location other than C:\GNUstep, you will need to adjust the instructions in the remainder of this chapter accordingly.

Once MinGW is installed, repeat the process for the GNUstep Core package.

[edit]Running
the GNUstep Shell

To begin using Objective-C and GNUstep, start the GNUstep shell by selecting
Start -> All Programs -> GNUstep -> Shell
. Once loaded, the shell will appear as follows:

[edit]Testing
the Installation

The shell environment is a minimalist version of the shell environment you might find on a Linux or Unix system. If you are unfamiliar with such an environment then it is unlikely you will want to perform the code editing in this window. Fortunately, it
is still possible to use your favorite editor on Windows.

When the shell is first started, it places you in the home directory for the GNUstep/MinGW environment. In terms of the Windows file system, and assuming you used the default installation location for MinGW and GNUstep, this is equates to:

C:\GNUstep\home\<username>

Where <username> is the name by which you logged into the Windows system. To create a simple application, open a suitable editor (Notepad will do) and enter the following code:

#import <Foundation/Foundation.h>int main (int argc, const char * argv[]){        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];        NSLog (@"hello world");        [pool drain];        return 0;}

Once the code has been entered, save the file in your GNUstep home directory (as outlined above) ashello.m. If you used Notepad, be sure to switch the
Save as Type option toAll Files so that the file is not given a
.txt file name extension.

Once the code has been written and saved, it can be compiled from the GNUstep shell window by entering the following command:

$ gcc `gnustep-config --objc-flags` -L /GNUstep/System/Library/Libraries hello.m -o hello -lgnustep-base -lobjc

Assuming a successful compilation, run the application as follows:

./hello.exe

When executed, the test program should produce output similar to:

2009-09-24 14:31:25.721 hello[2200] hello world

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.