- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Error wile compiling.
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
09-12-2003 08:18 AM
09-12-2003 08:18 AM
Error wile compiling.
/usr/local/bin/ld: Can't find library for -llibdb-3.2.sl
I don't have any idea about this error. Can anyone please help me out on this.
Thanks in advance.
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 08:24 AM
09-12-2003 08:24 AM
Re: Error wile compiling.
e.g.
-L
in your makefile
Rgds,
JL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 08:34 AM
09-12-2003 08:34 AM
Re: Error wile compiling.
-L
as prefix lib and suffix sl are implicit.
Rgds,
JL
Please let us know how you're getting on.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 08:38 AM
09-12-2003 08:38 AM
Re: Error wile compiling.
You link libraries normally taking out the lib prefix. In your case check
1. The library is available.
2. The path is there after -L
3. Change -llibdb-3.2sl to -ldb-3.2sl.
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 09:43 AM
09-12-2003 09:43 AM
Re: Error wile compiling.
/usr/local/bin/ld: Can't find library for -libdb-3.2.sl
Is there any way that I can see where the libraries are being searched during the make.
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 10:02 AM
09-12-2003 10:02 AM
Re: Error wile compiling.
Double check for the library. Add that path after -L.
-Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2003 12:09 PM
09-12-2003 12:09 PM
Re: Error wile compiling.
/usr/local/bin/ld: Invalid fixup: 0x3e in file /opt/Apple/Library/Frameworks/EOs
Can anyone tell me how to fix this problem.
Anand.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2003 09:23 AM
09-13-2003 09:23 AM
Re: Error wile compiling.
if you are building a shared library, make sure you compile with the correct compiler option - its either +z or +Z for cc/aCC, either -fpic or -fPIC for gcc. in your case -fpic should work.
--
ranga