<div dir="auto"><div><br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">вс, 28 мая 2023 г., 10:19 Andrea paz <<a href="mailto:gamberucci.andrea@gmail.com">gamberucci.andrea@gmail.com</a>>:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">> Andrea, can you point gdb at cin executable, run it inside gdb and post backtrace? ( I am not very good at reading dmp files :/)<br>
<br>
I'm sorry but I don't understand how to do it with gdb. Years ago I<br>
tried following GG's instructions. Now I have done the copy/paste of<br>
the instructions again but, when launching CinGG inside gdb I get:<br>
<br>
(gdb) run /tmp/cinelerra-5.1/bin/./cin<br>
Starting program:  /tmp/cinelerra-5.1/bin/./cin<br>
No executable file specified.<br>
Use the "file" or "exec-file" command.<br>
(gdb)<br>
<br>
I have no idea what to do (also because I don't know what I did...).<br>
Try to give me a list of instructions on how to do it.<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto">I just use 'gdb cin' and then 'run' from inside gdb.. It might stop at some gui interaction, then I go to terminal with gdb and print 'c' continue there ...</div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
PS: the GG's istruction are these:<br>
<br>
Are you able to build from source with full debugging symbols?<br>
><br>
Yes, the easy way to get a full static (non-debug) build is to:<br>
# git clone ...<br>
# cp -a /path/cinelerra-5.1 /tmp/<br>
# cd /tmp/cinelerra-5.1<br>
# ./bld.sh<br>
<br>
Then, to run as a developer in the debugger:<br>
# CFLAGS=-ggdb make -j16 rebuild_all<br>
# cd /tmp/cinelerra-5.1/bin<br>
# gdb<br>
(gdb) handle SIG32 pass nostop noprint<br>
(gdb) set pa off<br>
(gdb) run /tmp/cinelerra-5.1/bin/./cin<br>
</blockquote></div></div></div>