http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57740
--- Comment #10 from joseph at codesourcery dot com <joseph at codesourcery dot com> --- On Thu, 27 Jun 2013, pinskia at gcc dot gnu.org wrote: > No it does not. Or rather there have not been an ABI change in libstdc++ > since > 3.4. If you compile with the oldest distro you support, it should work across > all distros just fine. Just C++11 support was not part of most older distros > because they came out before 2011 :). Compiling with a (newer) cross compiler built with a sysroot from the old distro has various advantages over actually trying to build directly on the old distro - but you do then need to use -static-libstdc++ -static-libgcc to avoid depending on newer shared libraries. (Actually, a sysroot just containing the old glibc libraries, with all other libraries linked in statically, seems to work better in my experience than a complete old-distro sysroot with old versions of lots of libraries; there are lots of ways an old library can cause problems for building new software where complete absence of that library is detected at configure time and doesn't cause problems.) In theory this (building widely portable binaries) is what LSB toolchains are for, but I don't think they are widely used.