|
Re: Link time wrapping using QCC
|
06/15/2010 8:40 AM
post56834
|
Re: Link time wrapping using QCC
On 10-06-15 08:25 AM, Wim Hellenthal wrote:
> Hi folks,
>
> I would like to use link time wrapping so I tried linking a program using QCC with the following option
> --wrap foo
>
> This does not work. How should I proceed to wrap functions in my program ?
> Thanks in advance,
It's a linker option so you have to pass it through to the linker using
-Wl, For example:
-Wl,--wrap,foo
Regards,
Ryan Mansfield
|
|
|