This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix libgcc GCC_4.8.0 symver (PR bootstrap/55370)


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  <jakub@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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]