This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ 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 libsup++ build failure on mips-linux


Hello All,

libsupc++ currently fails to build on mips-linux because
size_of_encoded_value is defined but never used.
The appended patch fixes it.


Thiemo


2005-12-19  Thiemo Seufer  <ths@networkno.de>

	* libsupc++/eh_call.cc (NO_SIZE_OF_ENCODED_VALUE): Define.


Index: libstdc++-v3/libsupc++/eh_call.cc
===================================================================
--- libstdc++-v3/libsupc++/eh_call.cc	(revision 108751)
+++ libstdc++-v3/libsupc++/eh_call.cc	(working copy)
@@ -34,6 +34,8 @@
 
 using namespace __cxxabiv1;
 
+#define NO_SIZE_OF_ENCODED_VALUE
+
 #include "unwind-pe.h"
 
 


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