If it's build using debug options, looking with GDB where it fail would be much 
more useful than a random dependency graph.

It's intriguing that it default just after doing a mmap:

mmap(NULL, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANONYMOUS, -1, 
0) = 0x7f50a7949000


What options did you pass to strace to get this log? Have you set the "follow 
child" option?

> Le 10 mars 2016 à 05:55, Adam Carter <adamcart...@gmail.com> a écrit :
> 
> I can open the program ok, but when I click on New it seg faults. Strace of 
> its death below.
> 
> I tried recompiling it and all its immediate dependencies. How do i 
> troubleshoot this?
> 
> Cheers.
> 
> 
> ioctl(10, 0xc020645e, 0x7ffc4f7bd9c0)   = 0
> mmap(NULL, 65536, PROT_READ|PROT_WRITE, MAP_SHARED, 10, 0x1380a1000) = 
> 0x7f50a6adc000
> brk(0x2ed6000)                          = 0x2ed6000
> ioctl(10, 0xc020645d, 0x7ffc4f7bd960)   = 0
> ioctl(10, 0xc020645e, 0x7ffc4f7bda00)   = 0
> mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 10, 0x1380b1000) = 
> 0x7f50a794a000
> ioctl(10, 0xc020645d, 0x7ffc4f7bd800)   = 0
> ioctl(10, 0xc008646a, 0x7ffc4f7bd930)   = 0
> ioctl(10, 0x40086464, 0x7ffc4f7bd930)   = 0
> ioctl(10, 0xc020645e, 0x7ffc4f7bd950)   = 0
> mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 10, 0x1380b2000) = 
> 0x7f50a7949000
> munmap(0x7f50a7949000, 4096)            = 0
> ioctl(10, 0xc020645d, 0x7ffc4f7bd800)   = 0
> ioctl(10, 0xc008646a, 0x7ffc4f7bd930)   = 0
> ioctl(10, 0x40086464, 0x7ffc4f7bd930)   = 0
> ioctl(10, 0xc020645e, 0x7ffc4f7bd950)   = 0
> mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 10, 0x1380b3000) = 
> 0x7f50a7949000
> munmap(0x7f50a7949000, 4096)            = 0
> futex(0x2aea9f4, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x2aea9f0, {FUTEX_OP_SET, 0, 
> FUTEX_OP_CMP_GT, 1}) = 1
> futex(0x2aea9c8, FUTEX_WAKE_PRIVATE, 1) = 1
> futex(0x2c652dc, FUTEX_WAIT_PRIVATE, 1, NULL) = -1 EAGAIN (Resource 
> temporarily unavailable)
> futex(0x2c652b0, FUTEX_WAKE_PRIVATE, 1) = 0
> ioctl(10, 0xc020645d, 0x7ffc4f7bdbe0)   = 0
> futex(0x35a6a2c168, FUTEX_WAKE_PRIVATE, 2147483647) = 0
> mmap(NULL, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANONYMOUS, 
> -1, 0) = 0x7f50a7949000
> --- SIGSEGV {si_signo=SIGSEGV, si_code=SEGV_MAPERR, si_addr=0x968} ---
> +++ killed by SIGSEGV +++
> Segmentation fault
> 


Reply via email to