Installing libraries and header files under Ubuntu Linux for C/C++ development

I have to admit that I feel completely lost each time I have to fulfill the dependencies of some C or C++ code. Currently, I'm on Ubuntu 9.10 (Karmic Koala), but I remember the same feeling of forlornness from Windows.

I really think that I do understand C, C++, static and dynamic libraries, header files and linking, as well as the packet manager "aptitude", but when it comes to the practical part, I have absolutely no idea what to do. Even if I manage it somehow, I don't really know how I got there and learn nothing from it.

For example, today I wanted to use code which states that "It uses glib2, curl and openssl". In the end, I figured out that curl and openssl were already installed, but I needed to install libcurl3-dev via my packet manager, which will also required (and installed) libcurl4-openssl-dev so that I didn't have to worry about OpenSSL. But I had to choose these packet names from 67 similar-sounding alternatives. And glib, on the other hand, had to be downloaded and built manually since there was no matching packet at all.

It took my several hours to find this out, and it's not the first time. So my question really is:

When I have a vague description of the dependencies:

  • How do I find out which of those are already installed?
  • How do I figure out which of those can be fulfilled by installing packages?
  • How do I know the exact names of those packages?
  • If a package has to be built from source, how do I ensure that I don't get lost in the endless dependencies of this source, and the dependencies of those dependencies...?
  • I think I also need to link the libraries with my object files. If a single packet comes with several static library files, how do I know (without trial and error) which one to link?

Solution 1:

Figuring out which packages to install to satisfy dependencies is not an exact science. But there are some tips that might help you:

  • When you're working with satisfying dependencies to compile something, you nearly always want the package that ends in -dev. This is short for development. For example, the openssl package contains command line tools and libraries for working with encryption. libssl-dev contains header files and libraries for openssl development.
  • To search for a package by keyword using apt, use apt-cache search. For example, I didn't actually know that libssl-dev was what the name of the openssl dev package was. I found that using this command: apt-cache search openssl | grep dev and then going with the one that didn't seem to be related to another language/library.
  • You can see what packages you have installed using dpkg -l, but, in general, just find the package you want and tell apt to install it, if you already have it then apt will tell you. Another good tip is if you want to know what package owns a file, use dpkg -S /path/to/thefile
  • If you end up needing to build a package from source, there's no easy way to resolve the dependency tree. ./configure should tell you, or the README file. Often they will even name the exact package required.
  • For figuring out what to link, usually that's related to the name of the package or the most general name for what you want. For our libssl example, you would just pass -lssl to gcc. If you don't know what the options for -l are, take a look in /lib/ (just remove the "lib" from the front and the ".so..." from the back to get the 'middle' which is passed to gcc).

Solution 2:

Nobody mentioned

aptitude build-dep

The man-page entry is pretty comprehensive.