This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: force symbols for inline functions to be addressed at a particular library


Hi Peter,

> Sorry to re-post, but does anyone have suggestions on how to force g++
> to link against libc for 'stat' symbol instead of using the weak
> symbol from my shared library?

I'd do it by changing the name of your symbol in your shared library from
stat to mystat.

Or do it dynamically by using dlopen and opening the libc.so explicitly and
accessing the stat routine explicitly.

HTH,
--Eljay



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]