I was following the Objective-C tutorial using GNUstep
http://gnustep.made-it.com/GSPT/xml/Tutorial_en.html
I had to install the following packages to make everything compile properly (from my history):
sudo apt-get -y install build-essential
sudo apt-get -y install gnustep
sudo apt-get install gobjc
sudo apt-get install gnustep-make
sudo apt-get install libgnustep-base-dev
And in the GNUmakefile I added this path:
GNUSTEP_MAKEFILES=/usr/lib/GNUstep/System/Makefiles
Hope this helps someone else get around any errors they initially encounter.
Sunday, March 16, 2008
Subscribe to:
Post Comments (Atom)
Blog Archive
-
►
2009
(37)
-
►
June
(10)
- Daisy CMS - connecting a JMS listener to the repos...
- Daisy CMS - customising the footer of the editor p...
- Daisy CMS - allowing attributes in the SimpleDocum...
- JSF - ensuring your [xhtml] pages load with a text...
- Eclipse Galileo (3.5): Creating and running a JSF ...
- Using Eclipse Galileo to develop JSF applications ...
- SVN Web view - looking at older revisions
- Notes on setting up mod_proxy on apache 2.2 for pr...
- Addressing stability issues when running Eclipse 3...
- Forcing glassfish 2.1 to start-up with JDK1.6 (OSX...
-
►
April
(6)
- XSLT, text-transform:captialize and Excel workbook...
- Structure for Regular Expressions in Javascript
- SQL Server : Granting EXEC on Stored Procedures
- Eclipse : Save Actions for autoformatting code and...
- Eclipse : Display heap status (like IntelliJ IDEA)...
- Eclipse : Display Java Type Indicator for classes
-
►
June
(10)
6 comments:
This is how I install GNUstep on Ubuntu. Once dependencies are installed, I follow this guide.
A simplified version is following:
1. Download gnustep-make
2. ./configure --prefix=/usr/local/GNUstep
3. sudo make install
4. source /usr/local/GNUstep/System/Library/Makefiles/GNUstep.sh
4. Download gnustep-base
5. make
6. sudo make install
Great - thanks for that!
I followed your recommended intallation steps and did not get a Makefiles subdirectory anywhere in my GNUstep directory. When I run [find /usr/lib/GNUstep -name "*.make"] all I get are makefiles in the Bundles, Applications, and Preferences directories. Any idea what I need to do to get the Makefiles contents?
(I've changed my blogspot profile since my last post). I ran the GNUstep startup package from http://ftp.gnustep.org/pub/gnustep/core, and after adding support for TIFF and JPEG, it seems to be working. I suppose nothing worth doing should be easy. :)
Glad you solved it, Daryl
Hi. I think you are making it over-complicated. The Makefiles directory gets put under /usr/share/GNUstep, so I think you were just looking in the wrong place for it. Hope this helps.
Post a Comment