Operating System - HP-UX
1748129 Members
3663 Online
108758 Solutions
New Discussion юеВ

Looking for /usr/lib/libcps.2

 
SOLVED
Go to solution
Jason Martens
Frequent Advisor

Looking for /usr/lib/libcps.2

I've got someone here trying to run an app (ESRI) on my HP-UX 11.11 system, but it fails with the following message:
/usr/lib/pa20_64/dld.sl: Unable to find library 'libcps.2'.
Memory fault(coredump)

So, clearly the library is missing, but I'm having trouble figuring out what program/package/depot provides this. I found patch PHSS_27699 which seems to provide the missing files, but I don't have the base depot installed, so the patch won't install. Can someone point me in the right direction?

Thanks,
Jason
Never swap out a tape drive at 3 AM!!!
3 REPLIES 3
Pradeep_29
Frequent Advisor

Re: Looking for /usr/lib/libcps.2

Try ldd libcps.2 or any library module you are looking for...it will provide more info you are looking for.

You may need to install Patch PHSS_27700 (CPSlib Cumulative Patch).

Verify with "swlist -l product -l fileset | grep -i cps"
Ermin Borovac
Honored Contributor
Solution

Re: Looking for /usr/lib/libcps.2

The product you are looking for is called CPS (Compiler Parallel Support Library). You can find this product on your core os install CD.

Assuming your core os install CD is mounted under /cdrom install CPS with.

$ /usr/sbin/swinstall -s /cdrom CPS

Verify install with

$ /usr/sbin/swlist -l file | grep libcps.2
CPS.CPS-32SLIB: /usr/lib/libcps.2
CPS.CPS-64SLIB: /usr/lib/pa20_64/libcps.2

/usr/lib/pa20_64/libcps.2 is the file your app is looking for.
Jason Martens
Frequent Advisor

Re: Looking for /usr/lib/libcps.2

Thank you both, that's exactly what I was looking for. I needed to install CPS from the core cd, and I needed the PHSS_27700 patch. ITRC is great!
Never swap out a tape drive at 3 AM!!!