Where is the library for 'dlsym'

linker, ubuntu-9.10

Solution

From the `dlsym(3)` man page:

#include <dlfcn.h>

  ....

Link with -ldl.

Problem

I am getting this linker error: ``` system/core/libacc/tests/main.cpp:42: error: undefined reference to 'dlsym' ``` Can you please tell me where is the library on ubuntu 9.10 which contains the library for 'dlsym'? Thank you.

Original source