On 14 Jun 2013, at 12:31, Maxthon Chan <[email protected]> wrote: > I will give you my settings once I got home (use libsupc++.a under 64-bit > Ubuntu 13.04). However my settings is calling for LLVMgold.so and > clang+binutils LTO support.
Have you tested that this actually works? Even if you do somehow manage to link in libsupc++.a, you will then have two sets of symbols for the C++ runtime functions in any code that links libstdc++ (which, on Ubuntu, also statically links libsupc++) and so you will end up with undefined behaviour when you throw a C++ exception. This may or may not work in any given case, depending on which combination of symbols is used. In short: there's a reason why the build system doesn't do this by default. David -- Sent from my STANTEC-ZEBRA _______________________________________________ Gnustep-dev mailing list [email protected] https://lists.gnu.org/mailman/listinfo/gnustep-dev
