Hi! The GCC_4.8.0 symver is used in several *.ver files now, but without %inherit for it the version script maker does the wrong thing, e.g. puts two local: *; lines into the version script.
Fixed thusly, bootstrapped/regtested on x86_64-linux and i686-linux, ok for trunk? 2012-11-19 Jakub Jelinek <ja...@redhat.com> PR bootstrap/55370 * libgcc-std.ver.in: Add GCC_4.8.0 and %inherit for it. --- libgcc/libgcc-std.ver.in.jj 2011-11-28 17:57:58.000000000 +0100 +++ libgcc/libgcc-std.ver.in 2012-11-19 10:28:11.340499113 +0100 @@ -1935,3 +1935,7 @@ GCC_4.7.0 { __splitstack_resetcontext __splitstack_releasecontext } + +%inherit GCC_4.8.0 GCC_4.7.0 +GCC_4.8.0 { +} Jakub