Re: dlopen() and parent symbols

2004-02-05 Thread Francesco Casadei
Joe Lewis wrote: I've read that I can't export symbols from the parent executable to modules opened with dlopen(). So, I have a (hopefully) quick question. How can I export function(s) to those modules? Joe Lewis ___ [EMAIL PROTECTED] mailing list

dlopen() and parent symbols

2004-02-04 Thread Joe Lewis
I've read that I can't export symbols from the parent executable to modules opened with dlopen(). So, I have a (hopefully) quick question. How can I export function(s) to those modules? Joe Lewis ___ [EMAIL PROTECTED] mailing list

Re: dlopen() and parent symbols

2004-02-04 Thread Chris Pressey
On Wed, 4 Feb 2004 19:48:31 -0700 (MST) Joe Lewis [EMAIL PROTECTED] wrote: I've read that I can't export symbols from the parent executable to modules opened with dlopen(). So, I have a (hopefully) quick question. How can I export function(s) to those modules? Can you pass them a function

Re: dlopen() and parent symbols

2004-02-04 Thread Dan Nelson
In the last episode (Feb 04), Joe Lewis said: I've read that I can't export symbols from the parent executable to modules opened with dlopen(). So, I have a (hopefully) quick question. How can I export function(s) to those modules? ld --export-dynamic? -E --export-dynamic When