DEV Community

Thiago Massari Guedes
Thiago Massari Guedes

Posted on

Loading libraries in C++ on Linux

This is that kind of code that we don't write all the time, so let's remember the different ways to load and create libraries on Linux

There are 3 ways a library can be used by an application

  • Importing a static library
  • Static linking a shared library
  • Dynamic loading a shared library

We are going to show all the forms in this article

Read the full post here:
Thiago Café - Loading libraries in C++ on Linux

Top comments (0)