On 10. 3. 25 13:45, John Frankish wrote:
Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64
using the same distro (tinycorelinux) and the same machine.
Building from source using:
CC="gcc -ggdb" CXX="g++ -ggdb" ./configure --prefix=/usr/local -disable-static
--localstatedir=/var --with-utf8proc=internal
find . -name Makefile -type f -exec sed -i 's/-g -O2//g' {} \;
Just a note, you shouldn't need this substitution if you use the
environment variables correctly during configure (as documented by the
autogen.sh output):
./configure CC="gcc" CXX="g++" CFLAGS="-ggdb" CXXFLAGS="-ggdb" ...
-- Brane