- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- gdb and 64bit core files
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2006 12:57 PM
02-18-2006 12:57 PM
I'm trying to get gdb to process a core file generated from an intentional core dump from a program that is 64bit. It was compiled using gcc 4.0.2 (64bit).
file core -> ELF-64 PA-RISC 2.0
and KCORE (binary) -> ELF 64 executable object
gdb kcore core
-> GDB can't read core files on this system.
Why is this? And is there any version of GDB that can?
Thanks,
Ken
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2006 12:58 PM
02-18-2006 12:58 PM
Re: gdb and 64bit core files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2006 03:31 PM
02-19-2006 03:31 PM
SolutionYou also need to use wdb from HP, which includes 64 bit gcc. You can download wdb5.3 from,
http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,1662,00.html
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2006 04:55 PM
02-19-2006 04:55 PM
Re: gdb and 64bit core files
Or use like,
# what core
# adb kcore core
adb> $c
It will core informations.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2006 04:34 AM
02-20-2006 04:34 AM
Re: gdb and 64bit core files
si_code: 8 - ILL_ILLOPC - Illegal Op-Code.
The code was compiled using gcc 4.0.2. The linker is the bundled linker..
I'm still not able to perform 64bit debugging. Any thoughts?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2006 03:32 PM
02-20-2006 03:32 PM
Re: gdb and 64bit core files
You said, After installing the wdb and running the gui against a 64 bit binary, I get a SIGILL, Illedgal instruction
si_code: 8 - ILL_ILLOPC - Illegal Op-Code.
The code was compiled using gcc 4.0.2. The linker is the bundled linker..
Can you run in command line not GUI ?
# gdb
will invoke 64 bit GCC if application is 64 bit.
-Arun