- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unsatisified symbols
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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
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-08-2003 07:06 AM
09-08-2003 07:06 AM
/usr/ccs/bin/ld: Unsatisfied symbols:
cma_socket (code)
cma_send (code)
cma_sendto (code)
pthread_create (code)
cma_connect (code)
cma_accept (code)
cma_open (code)
Thanks,
Ed
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 07:11 AM
09-08-2003 07:11 AM
Re: Unsatisified symbols
T 0x0005BCA8 ./libcma.sl:cma_socket
T 0x0005C150 ./libcma.sl:cma_socketpair
T 0x00068080 ./libcma.sl:cma_socket2
T 0x00068538 ./libcma.sl:cma_socketpair2
T 0x00068040 ./libcma.sl:cma_socket2
T 0x0005C120 ./libcma.sl:cma_socketpair
T 0x0005BC48 ./libcma.sl:cma_socket
T 0x000684F8 ./libcma.sl:cma_socketpair2
T 0x000D2D70 ./libdce.sl:cma_socket
T 0x001A3250 ./libdce.sl:cma_socket
T 0x0039D1C0 ./libdce.sl:cma_socket
T 0x00127B40 ./libdce.sl:cma_socket
l1:/usr/lib 103 >
did you pass -lcma and/or -ldce? Both also contain pthread_create
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 07:54 AM
09-08-2003 07:54 AM
Re: Unsatisified symbols
You are above me on this one. What are -lcma and -ldce?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 08:00 AM
09-08-2003 08:00 AM
Re: Unsatisified symbols
You need to find the line in the makefile or script that invokes the linker (ld) or it may be a line that links several .o's using cc and simply add -lcma to that line.
If you post your linking script or makefile, it should be easy to tell you where to put it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 08:01 AM
09-08-2003 08:01 AM
Re: Unsatisified symbols
# ld -o runnable -Llibrary/path -llib -llib2 ...
Do you actually *have* /usr/lib/libcma.sl and/or /usr/lib/libdce.sl ?
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 09:01 AM
09-08-2003 09:01 AM
Re: Unsatisified symbols
[ -s syslibs ] && . ./syslibs
XLIBS=""
#
# Uncomment on HP/UX 10
#
#XLIBS=-lcl
for i in dlc83d.o
do
proexe=`echo $i | sed -e 's/dlc/pro/' -e 's/\.o//'`_sv
echo "-- $proexe"
cc -s -o $proexe pro8_sv.o $i $XLIBS $SYSLIBS || continue
[ -x /usr/bin/mcs ] && /usr/bin/mcs -d $proexe
mv $proexe ../bin
ls -l ../bin/$proexe
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 09:03 AM
09-08-2003 09:03 AM
Re: Unsatisified symbols
You could check the release notes or check with the vendor to see if there is an 11.00 version of the software.
It is often possible to see what compiler was used to build libraries and .o files.
/usr/ccs/bin/odump -compunit some.o
will report details about how some.o was built.
That may include the compiler version such as
HP92453-01 ; W.11.01.
or
HP92453-03; UX.10.20.02 (DAVIS)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 09:04 AM
09-08-2003 09:04 AM
Re: Unsatisified symbols
/usr/lib
# ll libcma*
-r-xr-xr-x 1 bin bin 528384 Mar 8 2000 libcma.1
-r-xr-xr-x 1 bin bin 540672 Feb 24 2000 libcma.2
lrwxr-xr-x 1 root sys 8 Jan 11 2000 libcma.sl -> libcma.2
# ll libdce*
-r-xr-xr-x 1 bin bin 4812800 Mar 8 2000 libdce.1
-r-xr-xr-x 1 bin bin 4849664 Feb 29 2000 libdce.2
lrwxr-xr-x 1 root sys 8 Jan 11 2000 libdce.sl -> libdce.2
-r-xr-xr-x 1 bin bin 1449984 Feb 29 2000 libdcecp.1
lrwxr-xr-x 1 root sys 10 Jan 11 2000 libdcecp.sl -> libdcec
p.1
-r-xr-xr-x 1 bin bin 176128 Feb 29 2000 libdcedpvt.1
lrwxr-xr-x 1 root sys 12 Jan 11 2000 libdcedpvt.sl -> libdc
edpvt.1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 09:13 AM
09-08-2003 09:13 AM
Re: Unsatisified symbols
# ll *.o
-rw-rw-r-- 1 root sys 2310648 Sep 3 09:22 dlc83d.o
-rw-r--r-- 1 root sys 705464 Mar 7 2001 pro8_sv.o
-rw-r--r-- 1 root sys 470436 Jul 31 2002 pro9_sv.o
# /usr/ccs/bin/odump -compunit pro8_sv.o
sh: /usr/ccs/bin/odump: not found.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 10:09 AM
09-08-2003 10:09 AM
Re: Unsatisified symbols
XLIB=-lcma
Could work.
Good luck
Adam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 10:19 AM
09-08-2003 10:19 AM
Re: Unsatisified symbols
/usr/ccs/bin/ld: Unsatisfied symbols:
U_STACK_TRACE (code)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 12:48 PM
09-08-2003 12:48 PM
Re: Unsatisified symbols
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2003 10:56 PM
