I am getting this error when building xapian-omega, but I can find no info about how to troubleshoot. Any ideas? Thanks! [root at home xapian-omega-1.0.8] # make check Making check in . make[1]: Entering directory `/usr/local/src/xapian-omega-1.0.8' make htmlparsetest md5test utf8converttest make[2]: Entering directory `/usr/local/src/xapian-omega-1.0.8' make[2]: `md5test' is up to date. make[2]: `utf8converttest' is up to date. make[2]: Leaving directory `/usr/local/src/xapian-omega-1.0.8' make check-TESTS make[2]: Entering directory `/usr/local/src/xapian-omega-1.0.8' /bin/sh: line 1: 27125 Segmentation fault ${dir}$tst FAIL: htmlparsetest PASS: md5test PASS: utf8converttest ======================================1 of 3 tests failed Please report to http://xapian.org/bugs ======================================make[2]: *** [check-TESTS] Error 1 make[2]: Leaving directory `/usr/local/src/xapian-omega-1.0.8' make[1]: *** [check-am] Error 2 make[1]: Leaving directory `/usr/local/src/xapian-omega-1.0.8' make: *** [check-recursive] Error 1
On Tue, Oct 14, 2008 at 05:59:10PM -0700, Josh wrote:> I am getting this error when building xapian-omega, but I can find no > info about how to troubleshoot. Any ideas? Thanks! > > [...] > /bin/sh: line 1: 27125 Segmentation fault ${dir}$tst > FAIL: htmlparsetestI'd try running the test program directly: ./htmlparsetest Assuming that fails too, run it under gdb: ./libtool --mode=execute gdb ./htmlparsetest And then at the "(gdb)" prompt: run and when it crashes then: bt This should give a backtrace to where the segv happens. Paste or attach to a mail. What's the platform BTW? Cheers, Olly