With FDS build, gdb does not find debug symbols if libjsig.so is accessed through symlink in client/ or server/. It's not clear whether it will pose real issues and if the user always can use libjsig.so in jre/lib/i386. However, there is an easy solution which will avoid any problems: make client/libjsig.debuginfo a link to libjsig.debuginfo. This will avoid any possible issues.
$ gdb /net/sqenfs-1.us.oracle.com/export1/comp/vm/jdk/adhoc/fds/product/linux-i586/jre/lib/i386/client/libjsig.so
GNU gdb (GDB) Red Hat Enterprise Linux (7.0.1-32.el5_6.2)
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-redhat-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /net/sqenfs-1.us.oracle.com/export1/jdk/vm/adhoc/fds/product/linux-i586/jre/lib/i386/client/libjsig.so...(no debugging symbols found)...done.
(gdb) quit
$ gdb /net/sqenfs-1.us.oracle.com/export1/comp/vm/jdk/adhoc/fds/product/linux-i586/jre/lib/i386/libjsig.so
GNU gdb (GDB) Red Hat Enterprise Linux (7.0.1-32.el5_6.2)
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-redhat-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /net/sqenfs-1.us.oracle.com/export1/jdk/vm/adhoc/fds/product/linux-i586/jre/lib/i386/libjsig.so...Reading symbols from /net/sqenfs-1.us.oracle.com/export1/jdk/vm/adhoc/fds/product/linux-i586/jre/lib/i386/libjsig.debuginfo...done.
done.
(gdb)
|