View Single Post
Old 12-31-2018, 01:10 PM   #3
_Enio_
Marquis
 
_Enio_'s Avatar
 
Join Date: Aug 2007
Location: Germany
Posts: 1,843
_Enio_ will become famous soon enough
Default

Hah platyna, i remember you from long ago To the issue at hand - it could well be some incompatile library version.


I suggest to install gdb, the gnu debugger (yum install gdb) and start rolauncher with it, it might be able to give some insight in where exactly it is crashing.


Once gdb is installed, naviage to the regnum directory and launch a console, then issue
Code:
gdb ./rolauncher
This will bring you inside the gdb console ready to debug. now just type run or r to get rolauncher executed with the debugger attached.
Once it crashed it will pause and you can issue more commands, i suggest to issue
Code:
bt
to get a backtrace on the function calls - paste the output here, it might give a hint which library is the culprit.


Exit gdb with the command
Code:
quit
Good luck and a happy new year.
__________________
Fix the Marksman subclass: Suggestion
_Enio_ no ha iniciado sesión   Reply With Quote
 
Loading...