John Polstra 747291735d Make the "-pthread" option work again, now that libc_r has to be
linked in addition to libc rather than instead of libc.

Ideally, "-pthread" would now be equivalent to adding "-lc_r" to the
end of the link command.  But it is slightly different in this
implementation.  Adding "-lc_r" to the link command would produce a
"ld" command line containing this:

    ... -lc_r /usr/lib/libgcc.a -lc /usr/lib/libgcc.a ...

but this implementation of the "-pthread" option produces this:

    ... /usr/lib/libgcc.a -lc_r -lc /usr/lib/libgcc.a ...

It would be possible to make them identical, but that doesn't fit
as nicely into GCC's way of doing things.  I don't think the ordering
change will make any difference in practice.
2001-01-25 18:57:13 +00:00
..
2000-01-16 10:22:31 +00:00
2001-01-10 14:18:12 +00:00
2001-01-24 14:26:06 +00:00
2000-07-14 09:57:37 +00:00
2000-03-19 22:00:57 +00:00
2001-01-03 18:32:10 +00:00
2000-08-20 09:51:08 +00:00
2000-11-14 11:20:58 +00:00
2001-01-21 22:22:31 +00:00
2000-11-30 21:07:50 +00:00
2001-01-10 16:51:28 +00:00