|
From: Hans-Bernhard B. <HBB...@t-...> - 2015-12-10 15:27:13
|
[Oops, keep forgetting to CC: the list] Am 10.12.2015 um 13:50 schrieb Mojca Miklavec: > On 10 December 2015 at 00:28, Hans-Bernhard Bröker wrote: >> Am 09.12.2015 um 19:35 schrieb Mojca Miklavec: >>>>> but the program crashes anyway (on exit at least) if I don't compile >>>>> it against libc++ (rather than libstdc++). >> "Crashes" is rather a small amount of information. Could you dig a little >> deeper, preferrably using the debugger? > ... and then I remembered that crashes are logged. So I'm attaching > it. But I don't know if anyone can make anything out of it except that > maybe something was wrong with the thread management? Hmmm... so let's see Exception Type: EXC_BAD_ACCESS (SIGSEGV) so most likely an invalid pointer. The call sequence triggering it is, at the top end: 19 gnuplot_qt 0x000000010a85a2dc main + 912 That's the top-level call from gnuplot_qt's main() into Qt: application.exec(); This may have to be brought to the attention of the Qt5 people, but it seems like the Qt event loop is still trying to process things after they're no longer there. |