up vote 5 down vote favorite
3
share [g+] share [fb]

I'm working on an embedded project that currently uses C in Linux and uClibc. We're interested in moving it to C++, but I don't want the overhead associated with linking in libstdc++. My impression is that this is possible provided we don't use anything from STL, such as iostream or vector.

How does one direct g++ to compile without linking to libstdc++?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 8 down vote accepted

When you compile, use g++ -c to compile only. Then for linking, use ld instead of g++. This invokes the linker directly, which requires you to name all your libraries on the command line (including libc and libcrt), however.

Alternatively, if you're using g++ as a "better c", you may be able to use gcc for your final link step (which will include libc automatically)

link|improve this answer
When I try this I get "undefined reference to `__gxx_personality_v0'" when trying to link. – Brian Oct 31 '09 at 1:30
I think that means you're using some C++ specific feature. As to which feature it is, I'm not sure. – lacqui Oct 31 '09 at 2:47
Okay, I got it to work by referring to <a href="stackoverflow.com/questions/329059/… question</a>. You have to compile with "g++ -fno-exceptions -c" and then link separately. – Brian Oct 31 '09 at 17:28
That link was supposed to be: stackoverflow.com/questions/329059/what-is-gxxpersonalityv0-for – Brian Oct 31 '09 at 17:28
feedback

You could use

g++ -nodefaultlibs -fno-exceptions a.cc

But you cannot use all c++ features this way...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.