Do you think it would be possible to apply this patch that avoids setting
up the output streams when compiling for Android? The Android version
installs its own that redirects the output to Java streams.

Regards,
Elias
Index: src/Output.cc
===================================================================
--- src/Output.cc       (revision 327)
+++ src/Output.cc       (working copy)
@@ -105,10 +105,12 @@
 DiffOut dout_filebuf(false);
 DiffOut uerr_filebuf(true);
 
+#ifndef HAVE_ANDROID
 ostream CIN(&cin_filebuf);
 ostream COUT(&dout_filebuf);
 ostream CERR(cerr_filebuf.use());
 ostream UERR(&uerr_filebuf);
+#endif
 
 extern ostream & get_CERR();
 ostream & get_CERR()

Reply via email to