If you have a core.xxxxx (xxxxx is numbers) file in the directory where world is then you can open it with gdb and get a trace of where the crash happened.
In that directory type gdb world core.xxxx, then type bt after it loads and post that stack trace.
If there is no core file then you can run world in gdb by navigating to the directory where it is, typing gdb world, then run once it starts. If it crashes type bt to get the stack trace.
|