You are here

Add new comment

rncbc's picture

OK. Please install gdb if not already and then try this on a (terminal) command line:

gdb qtractor

and enter at the gdb prompt:

(gdb) run

there, qtractor will start running, hopefully and at some later point it should appear this message saying something like

Program received signal SIGSEGV, Segmentation fault

telling you the program crashed. That's when you ask for a backtrace:

(gdb) bt

or,

(gdb) thread apply all bt

and paste here the spitted cryptic output, letting me inspect that.

Byee.