This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
linux libstc++ pthread mystery solved!
- To: egcs at cygnus dot com
- Subject: linux libstc++ pthread mystery solved!
- From: Neal Becker <neal at ctd dot comsat dot com>
- Date: 18 Oct 1997 10:06:18 -0400
I finally got my problem fixed, that libstc++ had undefined pthread
symbols, even after recompiling.
The problem was that make clean did not remove all the old .o files!
In library/libio there were some left. I think it was osform.o that
was the problem, if I recall correctly.
find -name '*.o' | xarg rm; make distclean; configure; make fixed it.