1831505 Members
3228 Online
110025 Solutions
New Discussion

libpthread.a for itanium

 
eran_b
New Member

libpthread.a for itanium

Hi,
I have an application that must be compiled statically with libpthread.
For PA-RISC, I could use libpthread.a without issues. However, for some reason, I cannot find libpthread.a on my ia64 box.
Does anyone know where it is?

Thanks,
Eran.
4 REPLIES 4
Dennis Handly
Acclaimed Contributor

Re: libpthread.a for itanium

Why do you need to compile with archive libs?

You are out of luck. Since system archive libs are evil, libc.a, libpthread.a and libunwind.a have all been removed.

You should just take the default shared libs.
eran_b
New Member

Re: libpthread.a for itanium

Hi,
I have an application that must be loaded BEFORE /usr is mounted and therefore all the "dlls" aren't available yet.
I did notice though that ct0.o is still available.

thank,
eran
Dennis Handly
Acclaimed Contributor

Re: libpthread.a for itanium

>I have an application that must be loaded BEFORE /usr is mounted and therefore all the "dlls" aren't available yet.

ISVs doing that must talk with DSPP.
http://www.hp.com/go/dspp

>I did notice though that crt0.o is still available.

Without libc.a, that is useless.
eran_b
New Member

Re: libpthread.a for itanium

Thanks, I'll do that