gil claudio wrote:
yes i have that file. what should I do with it?
If it is this one: []
/usr/lib/gcc/powerpc-apple-darwin8/4.0.0/libstdc++.dylib
then don't do anything with it, it is OK and has to be there. It is used when you compile with g++-4.0. It cannot be the source of your problem either. I was suspecting a file of the same name in /usr/local/lib or in /usr/lib or in /sw/lib. If you have one of these, move them out of the way during your compilation.
Another test would be to see if these missing symbols are indeed defined in your libstdc++.a. Try
nm /usr/lib/gcc/darwin/3.3/libstdc++.a | grep ZNSt24__default_alloc_templateILb1ELi0EE10deallocateEPvm
(one line) and see if it gives you something with "T" before the symbol name. If not, your libstdc++.a is the wrong one.
-- Martin ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ Fink-beginners mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fink-beginners
