Open hellocatfood opened 9 months ago
I'll take a closer look at this when I get a chance.
In the meantime, if you're compiling from the current master
, then you'll need to link against qt6
instead of qt5
. That'll mean you'll need to use the qmake
from qt6
when calling the configure
script. I don't remember the exact command offhand, but I'll post it here when I get a chance.
Thanks. How would I tell configure to use qt6?
The configure
line I've been using is:
./configure --debug --prefix=/usr --qmake='/usr/bin/qmake6'
Note that there might still be other issues lurking in synthclone
related to Qt. I didn't maintain this application for a decade, so I expect there are some things that are still broken.
Thanks for that, it now successfully builds but when I run synthclone
it doesn't launch:
terminate called after throwing an instance of 'std::bad_alloc'
what(): std::bad_alloc
Aborted (core dumped
I'll keep an eye on this repository and check again after some updates
Thanks for that, it now successfully builds but when I run
synthclone
it doesn't launch:terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc Aborted (core dumped
I'll keep an eye on this repository and check again after some updates
That is not a problem I've seen. I'm able to start the app, load sessions, and, in general, interact in the application.
You mentioned you're building synthclone
on Ubuntu 23.10. Is there anything unusual or interesting with respect to the environment you're building synthclone
in?
I recompiled and strangely the issue seems to have gone away. No idea what the problem could have been!
I recompiled and strangely the issue seems to have gone away. No idea what the problem could have been!
The fact that the problem just went away is a little scary. :(
I'm in the process of rewriting a bunch of code in synthclone
. One of the things I'll be sure to do is add a handler that runs on unexpected termination that prints a stack trace so we have a better idea of where these problems reside.
Even if the problem never comes back, I appreciate that you reported the issue. Thank you. :)
Trying to install synthclone on Ubuntu 23.10 and, a while after running
make
, the compilation fails with the following error: