[PATCH] Fix libsup++ build failure on mips-linux

Thiemo Seufer ths@networkno.de
Mon Dec 19 14:28:00 GMT 2005


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"
 
 



More information about the Libstdc++ mailing list