Re: Loadable module support
Eli Zaretskii <[email protected]>
| Newsgroups | gmane.comp.gnu.make.devel |
|---|---|
| Message-ID | <[email protected]> |
> Date: Fri, 20 Jan 2012 17:20:08 +0200 > From: Boris Kolpackov <[email protected]> > Cc: [email protected] > > dlopen() (not sure about Windows LoadLibrary()) doesn't really care > about what the name of the module is. For example, in the GCC plugin > architecture you pass a full path to the name of the module to load. LoadLibrary accepts both absolute and relative file names. If the name is relative, it is looked for in the directory where the calling program's executable file lives, and then in a list of standard directories.