View Single Post
Posts: 162 | Thanked: 351 times | Joined on Apr 2006 @ Cotswolds, UK
#10
Originally Posted by Delphipgmr View Post
nconsistency detected by ld.so: rtld.c: 1192: dl_main: Assertion `(void *) ph->p_vaddr == _rtld_local._dl_sysinfo_dso' failed!
Inconsistency detected by ld.so: rtld.c: 1192: dl_main: Assertion `(void *) ph->p_vaddr == _rtld_local._dl_sysinfo_dso' failed!
This is the "well-known" scratchbox VDSO problem: VDSO must be disabled. See http://www.scratchbox.org/wiki/DisablingVdso

On Debian 64-bit kernels (I do not know whether it is the same on Fedora kernels), the only way to disable VDSO support for 32-bit applications (like scratchbox) is to specify the following option on the kernel boot command line:

vdso32=0

So, I recommend rebooting your 64-bit system with that option to see if it fixes the problem.

Graham