/usr/bin/ld: cannot find -lpthread

Pthread primitives are part of the core libc.so library. To satisfy -lpthread, create an empty AR archive somewhere in the library search path.

E.g.: ar -rc /usr/lib/libpthread.a

9 Likes