Hi Jens,
I've recently done a complete build of everything up to and including having a working foundation, with blocks support on Ubuntu. I didn't use the packages for most of this stuff as I found similar issues to you. Here's what I did to get to a working setup:
sudo apt-get install subversion
sudo apt-get install g++
sudo apt-get install gobjc
sudo apt-get install vim
sudo apt-get install curl
sudo apt-get install libffi-dev
sudo apt-get install libxml2-dev
sudo apt-get install libicu-dev
sudo apt-get install libgnutls-dev
svn co
http://llvm.org/svn/llvm-project/llvm/trunk llvm
cd llvm/tools
svn co
http://llvm.org/svn/llvm-project/cfe/trunk clang
cd ../projects
svn co
http://llvm.org/svn/llvm-project/compiler-rt/trunk compiler-rt
cd ../../
mkdir build
cd build
../llvm/configure --enable-optimized
make
sudo make install
cd ../
curl
http://www.openssl.org/source/openssl-1.0.1-beta3.tar.gz > openssl-1.0.1-beta3.tar.gz # Ignore the bit about openssl if you don't need a recent one, I needed more recent than ubuntu's package manager provides
tar xvfz openssl-1.0.1-beta3.tar.gz
cd openssl-1.0.1-beta3
./config
make
sudo make install
cd ..
svn co
http://svn.gna.org/svn/gnustep/tools/make/trunk/ gnustep-make
svn co
http://svn.gna.org/svn/gnustep/libs/base/trunk/ gnustep-base
svn co
http://svn.gna.org/svn/gnustep/libs/libobjc2/1.6/ libobjc2
cd gnustep-make
./configure --prefix=/usr/GNUstep --enable-native-objc-exceptions --with-layout=gnustep --with-config-file=/usr/GNUstep/Local/Configuration/GNUstep.conf
make
sudo make install
vim ~/.bashrc # Add . /usr/GNUstep/System/Library/Makefiles/GNUstep.sh
exit # And reopen shell
./configure --with-openssl-include=/usr/local/ssl/include --with-openssl-library=/usr/local/ssl/lib/ --enable-libffi --with-default-config=/usr/GNUstep/Local/Configuration/GNUstep.conf
make
sudo -E make install
cd ../libobjc2
export CC=clang
make
sudo -E make install
cd ../gnustep-make
./configure --prefix=/usr/GNUstep --enable-native-objc-exceptions --with-layout=gnustep --with-config-file=/usr/GNUstep/Local/Configuration/GNUstep.conf
sudo make install
cd ../gnustep-base
make clean
./configure --with-openssl-include=/usr/local/ssl/include --with-openssl-library=/usr/local/ssl/lib/ --enable-libffi --with-default-config=/usr/GNUstep/Local/Configuration/GNUstep.conf
make
sudo -E make install
You should now have a working GNUstep Foundation :)
Hope that helps
Bob
On 25 Feb 2012, at 17:42, Jens Alfke wrote:
> _______________________________________________
> Discuss-gnustep mailing list
>
Discuss...@gnu.org
>
https://lists.gnu.org/mailman/listinfo/discuss-gnustep