1748069 Members
5596 Online
108758 Solutions
New Discussion юеВ

Where to find dlopen?

 
Paul Dembry_1
Occasional Contributor

Where to find dlopen?

In what library is dlopen located? The man page says -ldl but my 11.00 does
not have such a library file. How do I get it?
3 REPLIES 3
Neil Gast_1
Frequent Advisor

Re: Where to find dlopen?

Look at /usr/include/dlfcn.h

MrNeil
Paul Dembry_1
Occasional Contributor

Re: Where to find dlopen?

I know where the definitions are but in what library are the functions located?
Andy Bennett_4
New Member

Re: Where to find dlopen?

dlopen() is 64-bit 11.00 only. Therefore it is located in /usr/lib/pa20_64
instead of /usr/lib. To include this, don't add this to the library search
path: simply check that your machine is running the 64-bit kernel and then that
you are building with the +DD64 or +DA2.0W flag on the compiler - the -ldl
should then work fine.