Building and Installing GNUstep on Linux
Previous | Table of Contents | Next |
Installing and Using GNUstep and Objective-C on Linux | Objective-C 2.0 Data Types |
- GNUstep Make
- GNUstep Base
- GNUstep GUI
- GNUstep Backend
Each of these packages needs to be built and installed on your Linux system in order to gain access to the full power of Objective-C and to be able to work with the examples in the remainder of this book. Fortunately a single package called GNUstep Startup is provided that contains the source code for all four of the above packages. This package can be downloaded from the GNUstep.org website download page. Be sure to download the latest stable release of the GNUstep Startup software.
Once the package has been downloaded to a suitable work folder it can be unpacked as follows (where <version> is replaced by the version number of the package you downloaded):
tar xvfz gnustep-startup-<version>.tar.gz
The source files will be unpacked into a new directory named gnustep-startup-<version> (once again substituting <version> for the version you downloaded). Change directory into this folder as follows:
cd gnustep-startup-<version>
Configuring the Build Process
Before the build process can be started it must first be configured. This is an automated process that scans the system on which the build is to take place to find out about the packages that are installed and then creates a build configuration file and a Makefile. This configuration is performed by executing the following command in the GNUstep directory created in the previous section of this chapter:
./configure
Building GNUstep
Once the configuration script process is complete it is time to begin the GNUstep build. This is achieved by typing the following command:
make
Once executed, the build process will display an opening message similar to the following:
GNUstep Installation This is an automatic installation script for GNUstep. This script tries to build and install the core libraries for GNUstep. Log files of the build process are kept so that if some part of the build does not work, you can send the log files to our attention (at [email protected]). From these we can try to determine what the problem is. Press the Return key to begin continue:
Press any key to continue to the system check phase. At the end of this phase a list of errors and warnings may appear. Any errors will prevent the build from completing and should be addressed before proceeding. These typically involve installation of missing packages. Warnings can usually be ignored without impacting the subsequent build process.
Having reviewed the information provided, press any key to return to the build. The duration of the build will depend on the speed of the system but will usually be completed within a few minutes and display a message containing information some useful information:
--------------------------------------------------------- Installation Finished --------------------------------------------------------- Now run the GNUstep initialization script (put this in your .bashrc or other type of startup script). Note the '.' at the beginning of the line. . /usr/GNUstep/System/Library/Makefiles/GNUstep.sh Now you can install some applications and start using GNUstep Look for a few applications in the AppSources directory. The typical way to install an application is: tar -zxf MyApplication.tar.gz cd MyApplication make make install (as root, unless GNUstep is in your home dir) Then start the application: openapp MyApplication.app
Perhaps the most important piece of information in the above output is the reference to the GNUstep initialization script. This must be run prior to compiling any Objective-C applications and can be placed in the .bashrc startup script in your home directory. Make a note of the location listed in the message on your screen as the exact location may differ from the one shown above.
Testing the Objective-C and GNUstep Installation
Once the installation is complete, it can be tested by opening your favorite editor (if you don't have a favorite try GEdit by selecting Applications->Accessories->Text Editor) and entering some Objective-C code:
#import <Foundation/Foundation.h> int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSLog (@"hello world"); [pool drain]; return 0; }
Objective-C source files have a .m file name extension, so save the file as hello.m in a suitable folder such that you will be able to locate the file in the next section.
Compiling Objective-C Code
Before an Objective-C program can be run it must first be compiled. Compilation is a process whereby the human readable Objective-C code in the source file (in our case hello.m) is converted to the machine code understood by the CPU. Prior to performing this compilation, however, the GNUstep environment must first be set up by executing the GNUstep.sh, the location of which was provided at the end of the installation process. Execute this script exactly as outlined in the installation message, for example:
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh
Failure to execute this script prior to compiling Objective-C code in a Terminal window will result in the compiler reporting errors similar to the following:
error: cannot find interface declaration for ‘NXConstantString’
From within a Terminal window change directory to the where you saved the hello.m source file and execute the following command to compile it:
gcc `gnustep-config --objc-flags` -L/usr/GNUstep/Local/Library/Libraries -lgnustep-base hello.m -o hello
If all goes well, the compilation should complete silently and the test application is ready to run. The program may be executed as follows:
./hello
Executing the program will result in output similar to the following:
2009-09-15 10:48:39.772 prog1[12906] hello world
Assuming you see output similar to the above example, Objective-C and GNUstep are successfully installed on your Linux system and you are ready to continue with the remainder of this book.
<google>BUY_OBJC_BOTTOM</google>
Previous | Table of Contents | Next |
Installing and Using GNUstep and Objective-C on Linux | Objective-C 2.0 Data Types |