First, I usually remove the build directory to be safe. So from the main directory:

rm -rf build

Then go through the usual process, but specify a debug build when you run cmake:

mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
make

Now you've got a debug build. It has the info we need for a useful backtrace.

  Next run rosegarden with gdb:

gdb ./rosegarden

And when it crashes, do a "bt" to get a backtrace. Post the results here and we'll see if it tells us anything useful.

Ted.

On 6/26/22 12:13 PM, Mario Moles wrote:
How do you make a Debug Build?

Il 26/06/22 17:51, Ted Felix ha scritto:
Ok.  Are you doing a debug build?  If so, you can get a backtrace using gdb.  That will tell us exactly what's going on.


_______________________________________________
Rosegarden-user mailing list
Rosegarden-user@lists.sourceforge.net - use the link below to unsubscribe
https://lists.sourceforge.net/lists/listinfo/rosegarden-user


_______________________________________________
Rosegarden-user mailing list
Rosegarden-user@lists.sourceforge.net - use the link below to unsubscribe
https://lists.sourceforge.net/lists/listinfo/rosegarden-user

Reply via email to