Jump to content

Metin2 crash db - occasionally


Recommended Posts

  • Replies 3
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

  • Developer

I think you are trying to read a stripped file. 

When game and db are linked they got all debug information used from gdb to read where is it crashing.

The process called stripping remove the debug symbols from the executable (and so reduce its size).

Unfortunately doesn't give any information try to read a db.core using a stripped db file.

You have to find the unstripped file and to read its symbol table.


You might have a "-s" flag to your linking commands in your makefile that strip the output file automatically.

My youtube channel  on which you can see my works here

Link to comment
Share on other sites

53 minutes ago, Ikarus_ said:

I think you are trying to read a stripped file. 

When game and db are linked they got all debug information used from gdb to read where is it crashing.

The process called stripping remove the debug symbols from the executable (and so reduce its size).

Unfortunately doesn't give any information try to read a db.core using a stripped db file.

You have to find the unstripped file and to read its symbol table.


You might have a "-s" flag to your linking commands in your makefile that strip the output file automatically.

 

I deleted the strip a long time ago

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.