Pthread compilation error

I have trouble compiling a pthread program on unix system which suppotrs pthreads it gives
unresolved
_pthread_create
_pthread_exit

error.

what to do?

There are library objects which are not found. You must determine

(1) if your system has the correct objects; and
(2) if the objects are in the path of your compiler/linker.

This is not easy for a novice to do. Sounds like your package needs pthreads and it has not been installed. Check to see if you have the library. Perhaps try the ldconfig command to look at your ld path for shared objects, etc.

[Edited by Neo on 10-13-2000 at 08:20 PM]