HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: What does "symbol not found:" means
Operating System - HP-UX
1825962
Members
3364
Online
109690
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
01-12-2009 02:02 AM
01-12-2009 02:02 AM
What does "symbol not found:" means
Hi World,
I have tried to load the executable. I got the error java.lang.unsupporttedlinkerror:can't load symbol not found
I tried the ldd option. i got the below out put. what it actually means.
ldd -d libHPUXItanium64Stats.so
libstd_v2.so.1 => /usr/lib/hpux64/libstd_v2.so.1
libCsup.so.1 => /usr/lib/hpux64/libCsup.so.1
libunwind.so.1 => /usr/lib/hpux64/libunwind.so.1
libm.so.1 => /usr/lib/hpux64/libm.so.1
libuca.so.1 => /usr/lib/hpux64/libuca.so.1
symbol not found: _nl_radix (/usr/lib/hpux64/libstd_v2.so.1)
symbol not found: __nl_char_size (/usr/lib/hpux64/libstd_v2.so.1)
symbol not found: __iob (/usr/lib/hpux64/libstd_v2.so.1)
symbol not found: __ismt (/usr/lib/hpux64/libstd_v2.so.1)
symbol not found: __memmove_ver (/usr/lib/hpux64/libstd_v2.so.1)
symbol not found: __iob (/usr/lib/hpux64/libCsup.so.1)
symbol not found: __ismt (/usr/lib/hpux64/libCsup.so.1)
symbol not found: __memmove_ver (/usr/lib/hpux64/libCsup.so.1)
symbol not found: __load_info (/usr/lib/hpux64/libunwind.so.1)
symbol not found: __iob (/usr/lib/hpux64/libunwind.so.1)
symbol not found: __ismt (/usr/lib/hpux64/libunwind.so.1)
Thanks in advance
Gopi
I have tried to load the executable. I got the error java.lang.unsupporttedlinkerror:can't load symbol not found
I tried the ldd option. i got the below out put. what it actually means.
ldd -d libHPUXItanium64Stats.so
libstd_v2.so.1 => /usr/lib/hpux64/libstd_v2.so.1
libCsup.so.1 => /usr/lib/hpux64/libCsup.so.1
libunwind.so.1 => /usr/lib/hpux64/libunwind.so.1
libm.so.1 => /usr/lib/hpux64/libm.so.1
libuca.so.1 => /usr/lib/hpux64/libuca.so.1
symbol not found: _nl_radix (/usr/lib/hpux64/libstd_v2.so.1)
symbol not found: __nl_char_size (/usr/lib/hpux64/libstd_v2.so.1)
symbol not found: __iob (/usr/lib/hpux64/libstd_v2.so.1)
symbol not found: __ismt (/usr/lib/hpux64/libstd_v2.so.1)
symbol not found: __memmove_ver (/usr/lib/hpux64/libstd_v2.so.1)
symbol not found: __iob (/usr/lib/hpux64/libCsup.so.1)
symbol not found: __ismt (/usr/lib/hpux64/libCsup.so.1)
symbol not found: __memmove_ver (/usr/lib/hpux64/libCsup.so.1)
symbol not found: __load_info (/usr/lib/hpux64/libunwind.so.1)
symbol not found: __iob (/usr/lib/hpux64/libunwind.so.1)
symbol not found: __ismt (/usr/lib/hpux64/libunwind.so.1)
Thanks in advance
Gopi
- Tags:
- ldd
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2009 02:20 AM
01-12-2009 02:20 AM
Re: What does "symbol not found:" means
Hi:
The linker is showing you the symbols (code or data) that your object file is referencing and the shared libraries or executables that are, or whould be, loaded to honor them.
Regards!
...JRF...
The linker is showing you the symbols (code or data) that your object file is referencing and the shared libraries or executables that are, or whould be, loaded to honor them.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2009 02:41 AM
01-12-2009 02:41 AM
Re: What does "symbol not found:" means
>java.lang.unsupporttedlinkerror: can't load symbol not found
This is a garbage java error message. What is the symbol in question?
>I tried the ldd option. I got the below output. what it actually means?
It means you used the wrong command. A proper command would have told you what unsats you have. You currently have none. The listed symbols are all defined in libc.
This is a garbage java error message. What is the symbol in question?
>I tried the ldd option. I got the below output. what it actually means?
It means you used the wrong command. A proper command would have told you what unsats you have. You currently have none. The listed symbols are all defined in libc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2009 02:46 AM
01-12-2009 02:46 AM
Re: What does "symbol not found:" means
>JRF: The linker is showing you the symbols (data) that your shlib is referencing and the shared libraries or executables that are, or would be, loaded to honor them.
You mean dynamic loader, not linker. And the symbols with "symbol not found" aren't in any of the dependent shlibs.
You mean dynamic loader, not linker. And the symbols with "symbol not found" aren't in any of the dependent shlibs.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP