I’m checking a makefile, and see that the libraries used are:
LIBS = -lcppunit -ldl
lcppunit
is the unit testing library. What is ldl
then?
Advertisement
Answer
libdl
is the dynamic linking library.
I’m checking a makefile, and see that the libraries used are:
LIBS = -lcppunit -ldl
lcppunit
is the unit testing library. What is ldl
then?
libdl
is the dynamic linking library.