在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
http://www.techotopia.com/index.php/Installing_and_using_GNUstep_and_Objective-C_on_Windows 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. Downloading the GNUstep PackagesThe GNUstep environment is made available on Windows using a toolkit called MinGW. MinGW is an abbreviation of Minimal 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 the GNUstep Core download. Both must be downloaded before proceeding with the installation. Installing MinGW and GNUstep on WindowsOnce 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.
Running the GNUstep ShellTo 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: Testing the InstallationThe 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) as hello.m . If you used Notepad, be sure to switch the Save as Type option to All 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
|
请发表评论