|
Problem |
When running dbx, it will look at the system libraries
when analyzing the core. This will cause addressing problems unless the
systems are exact same version. |
|
|
|
Solution |
Save the executed and libraries in a directory called libs
under the current directory:
mkdir libs
{ save files to libs }
Then run edit_core ( 32bit ) or edit_core (64bit) on the core file :
edit_core core.001
this fixes the core to look for libraries in libs directory.
Then use dbx or this script
ftp://ftp.software.ibm.com/aix/tools/javatools/diagnostic/dbxtrace.sh
which runs dbx :
dbx libs/executable core.001
or
dbxtrace.sh libs/executable core.001
  |
|
|