Dê uma olhada no este tópico . Se você preferir simplesmente pular para o ponto, aqui está uma citação
"Try using the command g++ instead of gcc. The g++ command is used for compiling C++ code (whereas gcc defaults to C code), and will automatically link against libstdc++.so. If you really want to use gcc to compile, you must manually tell it to link against the c++ library, e.g. "
$ gcc foo.cpp -l stdc++