- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unresolved symbol: vsnprintf
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
10-25-2002 11:27 AM
10-25-2002 11:27 AM
Unresolved symbol: vsnprintf
/usr/lib/dld.sl Unresolved symbol: vsnprintf (code) from
OS - HP-UX 10.2
I just installed patches for aC++ runtime (aCC A.01.3)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2002 12:16 PM
10-25-2002 12:16 PM
Re: Unresolved symbol: vsnprintf
Please check if you missed any object file(s) to add to link list (or remove unneeded), check your source code for errors.
Eugeny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 02:12 AM
10-28-2002 02:12 AM
Re: Unresolved symbol: vsnprintf
vsnprintf() is a part of standart library, so I don't think that any object is missing. The change was made (probarly) by this patch. Check the description of vsnprintf() in manuals if this dos not requre any special linking now.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 02:21 AM
10-28-2002 02:21 AM
Re: Unresolved symbol: vsnprintf
vsnprintf is in libc. You can check if it's present on your system with :
$ nm /usr/lib/libc.1 |grep vsnprintf
_vsnprintf | 820136|uext |stub |
_vsnprintf | 1187296|extern|entry |
_vsnprintf | 1187344|extern|code |$CODE$
vsnprintf | 1187320|extern|entry |
vsnprintf | 1187344|extern|code |$CODE$
If you don't have this output, update your libc.
Regards,
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 05:05 AM
10-28-2002 05:05 AM
Re: Unresolved symbol: vsnprintf
Did you check if there are any special instructions with these patches?
Can you provide me with the names of the patches?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2003 09:40 PM
06-09-2003 09:40 PM
Re: Unresolved symbol: vsnprintf
# uname -a
HP-UX ebochpux B.10.20 A 9000/778 2014848671 two-user license
# nm /usr/lib/libc.1 |grep vsnprintf
_vsnprintf | 827616|uext |stub |
_vsnprintf | 1147816|extern|entry |
_vsnprintf | 1147840|extern|code |$CODE$
Any help is appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2003 10:33 PM
06-09-2003 10:33 PM
Re: Unresolved symbol: vsnprintf
just found an interesting document:
###############
vsnprintf does not have a specific header file in HP-UX 10.20.
vsnprintf support begins at HP-UX 10.30. This information is documented
in the 10.30 release notes.
Although vsnprintf exists in the 10.20 version of libc, it is not
documented, and not present in header files.
#################
So i guess your program might be custom....
which patch did you installed ?
have you a copy of your libc BEFORE patching, to check with the commands suggested by the others ?
May be you should think about a replacement for the libc... i will never suggest to remove a patch.
Massimo