- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HPBEDEBUG_GetHpBeDebug
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
05-25-2010 08:17 AM
05-25-2010 08:17 AM
HPBEDEBUG_GetHpBeDebug
I am trying to port my HP PA RISC to Itanium using gcc v 4.4.3.
At first I got the libu2comp.so not found message, but after downloading and installing, I am now getting this symbol not found message.
I can probably by-pass it by declaring it, somewhere, but I would like to know what it is.
Thanks.
collect2: ld terminated with signal 9 [Killed]
/usr/lib/hpux64/dld.so: Unsatisfied code symbol 'HPBEDEBUG_GetHpBeDebug' in load
module '/opt/langtools/lib/hpux64/libu2comp.so'.
*** Error exit code 1
- Tags:
- gcc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2010 10:00 AM
05-25-2010 10:00 AM
Re: HPBEDEBUG_GetHpBeDebug
You have no business downloading and installing libu2comp.so if you haven't purchased the aC++ compiler. How did you do that?
>PA RISC to Integrity using gcc v 4.4.3.
Have you removed ALL of your PA objects and archives?
What HP-UX version are you using? What linker patch do you have? Newer linkers shouldn't invoke u2comp with mismatched objects.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2010 10:08 AM
05-25-2010 10:08 AM
Re: HPBEDEBUG_GetHpBeDebug
HP-UX hp3006 B.11.23 U ia64 2640781999 unlimited-user license
As for the linker, it's just the default linker that came with it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2010 10:24 AM
05-25-2010 10:24 AM
Re: HPBEDEBUG_GetHpBeDebug
If you aren't using aC++, you should remove it.
>it's just the default linker that came with it.
That is likely your secondary problem. The recommended patch is: PHSS_40537
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2010 12:58 PM
05-25-2010 12:58 PM
Re: HPBEDEBUG_GetHpBeDebug
I think the reason my build is looking for it is because I am linking in an Oracle library. Anyhow, I noticed on the HP DVD that came with the the server, it comes with aCC. After installing that the, error went away and replaced with a new error.
CPL Product: B3911DB
Codeword Req.: No
Size: 321979719
Revision: C.11.23.09
Description: HP aC++ Compiler (S700)
CPL Product: B3913DB
Codeword Req.: No
Size: 321979719
Revision: C.11.23.09
Description: HP aC++ Compiler (S800)
Thanks for your help Dennis.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2010 07:17 PM
05-25-2010 07:17 PM
Re: HPBEDEBUG_GetHpBeDebug
This should only happen if you have PA objects and libs in your link line. (And I thought the new linker would give a better error message.)
What does file(1) show for each?
>I think the reason my build is looking for it is because I am linking in an Oracle library.
Can you run file on that?
>it comes with aCC. CPL Product: B3911DB CPL Product: B3913DB
These versions are obsolete and not supported.
>replaced with a new error.
What's that error?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2010 01:30 PM
05-26-2010 01:30 PM
Re: HPBEDEBUG_GetHpBeDebug
Then, I changed "/usr/lib/libsec.1" to "usr/lib/hpux32/libsec.so.1"
and everything worked.
I'm guessing libsec.1 on Itanium is different than the libsec.1 on PA RISC.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2010 03:02 PM
05-26-2010 03:02 PM
Re: HPBEDEBUG_GetHpBeDebug
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2010 10:14 PM
05-26-2010 10:14 PM
Re: HPBEDEBUG_GetHpBeDebug
Of course. Because of Aries(5), Integrity systems have both the PA and IPF shlibs.
PA is in /usr/lib/ and IPF is in /usr/lib/hpux??/.
>I changed /usr/lib/libsec.1
Why are you mentioning either? You should just link with -lsec.
>I'm guessing libsec.1 on Integrity is different than the libsec.1 on PA RISC.
If it has the same path, they should be the same.