This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
[PATCH] Fix libsup++ build failure on mips-linux
- From: Thiemo Seufer <ths at networkno dot de>
- To: gcc-patches at gcc dot gnu dot org
- Cc: libstdc++ at gcc dot gnu dot org
- Date: Mon, 19 Dec 2005 15:23:36 +0100
- Subject: [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"