- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: /usr/ccs/bin/ld: Can't find library: ".test1.o...
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
12-24-2002 05:18 AM
12-24-2002 05:18 AM
/usr/ccs/bin/ld: Can't find library: ".test1.o"
The OS is HP 11x and compiler is aCC.
Command:
aCC -o server -L /home/vasu/lib.a -l test1.o serv.o
Please reply ASAP
Thanks
Vasu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-24-2002 06:29 AM
12-24-2002 06:29 AM
Re: /usr/ccs/bin/ld: Can't find library: ".test1.o"
aCC -o server -L /home/vasu -l lib.a test1.o serv.o
Try using ld with the same parameters
Eugeny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2002 01:49 AM
12-25-2002 01:49 AM
Re: /usr/ccs/bin/ld: Can't find library: ".test1.o"
aCC -o server -L /home/vasu/ -llib test1.o serv.o
-Rohan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2002 12:20 AM
12-26-2002 12:20 AM
Re: /usr/ccs/bin/ld: Can't find library: ".test1.o"
I am getting a new error now :
/usr/ccs/bin/ld: Unsatisfied symbols:
func1(first referenced in ./source/test1.o) (code)
Vasu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2002 03:09 AM
12-26-2002 03:09 AM
Re: /usr/ccs/bin/ld: Can't find library: ".test1.o"
does your program calls this 'func1' function in its code? I think you should define and develop its code in your program. I do not believe 'func1' function exists in standard libraries :o)
So check your code for typos and if you developed this 'func1' function's code
Eugeny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2002 05:08 AM
12-26-2002 05:08 AM
Re: /usr/ccs/bin/ld: Can't find library: ".test1.o"
I found the answer from the below link :
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xce1fcbaac6dcd5118ff40090279cd0f9,00.html
I was using c & c++ codes, this link helped me to solve the problem.
Vasu