Re[2]: [ooc-compiler] Segmentation fault during installation
Brought to you by:
mva
From: vedmed <ve...@in...> - 2004-02-10 06:50:43
|
Hello Jan, Tuesday, February 10, 2004, 6:03:42 AM, you wrote: J> At the moment, I think the problem must be be related to my distribution J> (SuSE 9.0 professional): I just finished trying installation on a J> different machine at work that's running the same distribution (without J> gc) with exactly the same results and behaviour that I get here at home. J> Is there anyone using SuSE 9.0 who installed oo2c successfully? Are J> there any libs or programs used during installation that might be J> missing/corrupt/wrong version in SuSE 9.0? I have successfully install gc6.3alpha4 and oo2c 2.0.18 on fresh installed SuSe 9.0 At installation into home directory on SuSe to me it was necessary to specify a path to libraries at /etc/ld.conf and to execute ldconfig after installing gc. Other distribution (Fedora 1) did not demand these actions. For installation of packages instead of start configure the following bash script was used #! /bin/sh PRF=$HOME/local export LDFLAGS=-L$PRF/lib export CFLAGS=-I$PRF/include export LD_LIBRARY_PATH=$PRF/lib export PKG_CONFIG_PATH=$PRF/lib/pkgconfig export CPP="gcc -E -I$PRF/include" ./configure --prefix=$PRF $* on my computer ~/bin is a symlink to ~/local/bin -- Best regards, vedmed mailto:ve...@in... |