Ignoramus20785 <[EMAIL PROTECTED]> writes: > I tried your suggestion. It did remove dependency on libstdc++. Which > is great. Thank you. > > However, it looks like we have one more issue: all of our shared > libraries that we build from our code (that come with the executable > in question) have references to function _Unwind_GetIPInfo. That > function, in turn, requires GCC_4.2.0.
You never mentioned shared libraries before. They present a whole another set of complications. > Is there something that we can do to not call that _Unwind_GetIPInfo? I can't find any way of getting my objects reference that function. Did you by any chance do this: ln -sf $(g++ --print-file-name=libstdc++.a) . g++ foo.o bar.o -o foo.so -shared -static-libgcc -L. [That's the only way I figured out to get a shared library that requires _Unwind_GetIPInfo.] Don't do *that*; link them "normally" instead: g++ foo.o bar.o -o foo.so -shared > On Wed, Jan 31, 2007 at 07:26:27AM -0800, Paul Pluzhnikov wrote: >> Ignoramus20785 <[EMAIL PROTECTED]> writes: Please do not top-post. Cheers, -- In order to understand recursion you must first understand recursion. Remove /-nsp/ for email. _______________________________________________ help-gplusplus mailing list help-gplusplus@gnu.org http://lists.gnu.org/mailman/listinfo/help-gplusplus