Search code examples
c++linuxdynamic-library

Meaning of library dl in gcc


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?


Solution

  • libdl is the dynamic linking library.