This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Help needed with shared library & symbol hiding
- To: "Malleswara Rao P" <malli-rao at excite dot com>, <gcc-help at gcc dot gnu dot org>
- Subject: Re: Help needed with shared library & symbol hiding
- From: "John Love-Jensen" <eljay at adobe dot com>
- Date: Thu, 25 Oct 2001 07:13:55 -0500
- References: <15192494.1003966189298.JavaMail.imail@doby.excite.com>
Hi Malli,
Use the '-version-script FILE' switch to explicitly export select symbols.
Sincerely,
--Eljay
Example of my "libtoy.so"
----------------------------------
VERSION {
global:
Alpha;
Beta;
Gamma;
Delta;
local:
*;
};
----------------------------------