public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug lto/51859] New: wrapped symbols (wrap linker option) do not link
@ 2012-01-14 12:29 ncahill_alt at yahoo dot com
  2012-01-16 11:17 ` [Bug lto/51859] Linker option effects not reflected in symbol resolution file rguenth at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: ncahill_alt at yahoo dot com @ 2012-01-14 12:29 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51859

             Bug #: 51859
           Summary: wrapped symbols (wrap linker option) do not link
    Classification: Unclassified
           Product: gcc
           Version: 4.6.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: lto
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: ncahill_alt@yahoo.com


The following command,
> gcc -flto -Wl,-wrap,malloc -o a a.c
produces the following error,

`__wrap_malloc' referenced in section `.text' of
/tmp/ccCKjgAw.ltrans0.ltrans.o: defined in discarded section `.text' of
/tmp/ccREUpxM.o (symbol from plugin)
collect2: ld returned 1 exit status

Here is the test case:

--- a.c ---
void * __wrap_malloc(int bytes)
{
 __real_malloc(bytes);
}

int main()
{
 int *p = (int *)malloc(4);
 *p = 2;
 free(p);
 return 0;
}
--- end a.c ---

This has the result that xorg-server 1.11.2 does not build with lto enabled.
Thank you.

Neil.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-01-18 10:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-14 12:29 [Bug lto/51859] New: wrapped symbols (wrap linker option) do not link ncahill_alt at yahoo dot com
2012-01-16 11:17 ` [Bug lto/51859] Linker option effects not reflected in symbol resolution file rguenth at gcc dot gnu.org
2012-01-16 17:47 ` d.g.gorbachev at gmail dot com
2012-01-16 17:51 ` d.g.gorbachev at gmail dot com
2012-01-18 10:39 ` rguenth at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).