[EMAIL PROTECTED] writes:

> any clues why???

My money is on you linking against the wrong (2.x) version of
libstdc++ ...

I do not know enough about OSX libraries to give you more hints,
but you can see which symbols you need:

  g++ -c main.cpp
  nm main.o | grep _default_alloc_template

which libstdc++ library is being used:

  g++ main.o -Wl,-v

and what symbols it defines:

  nm /path/to/libstdc++.{so,a} | grep _default_alloc_template

Cheers,
-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.
_______________________________________________
Help-gplusplus mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to