[protobuf] Issue 172 in protobuf: 2.3.0 fails to compile with -Wall -Wextra -Werror

2010-03-08 Thread protobuf
Status: New Owner: ken...@google.com Labels: Type-Defect Priority-Medium New issue 172 by exeonical: 2.3.0 fails to compile with -Wall -Wextra -Werror http://code.google.com/p/protobuf/issues/detail?id=172 My system: Ubuntu 9.04 gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) Errors:

[protobuf] How to compile protobuf using g++ in windows

2010-03-08 Thread Chiang
Hi there, Does anyone know how to compile protobuf using g++ in windows? I have an application that uses protobuf library which I want to get it to run in Windows. I manage to run it on Linux platforms. But I would like to port it to Windows as well. Any help will be much appreciated. Thank

Re: [protobuf] How to compile protobuf using g++ in windows

2010-03-08 Thread Kenton Varda
You need to use either Cygwin or MinGW+MSYS. Either of these will be able to run the configure script and make just like on Linux. On Mon, Mar 8, 2010 at 6:08 AM, Chiang chiangk...@gmail.com wrote: Hi there, Does anyone know how to compile protobuf using g++ in windows? I have an

[protobuf] Re: How to compile protobuf using g++ in windows

2010-03-08 Thread Chiang
Hi, thank you for the quick reply. I've just finished compiling using MinGW+MSYS, and the library is now all good for my application. Thank you. Chiang On Mar 8, 4:35 pm, Kenton Varda ken...@google.com wrote: You need to use either Cygwin or MinGW+MSYS.  Either of these will be able to run the

Re: [protobuf] Debugging invalid UTF-8 data

2010-03-08 Thread Kenton Varda
Protocol Buffers are binary data, not text. You can't store them in String (or CharSequence) objects because those are meant only for Unicode text. If CMeCab tries to transfer protobuf messages as Strings then it is, unfortunately, broken. If you want to figure out how you are hitting that log