[protobuf] Re: Issue 474 in protobuf: fix handling of Atomic64 on x32 ABIs

2013-03-04 Thread protobuf
Updates: Status: Fixed Comment #3 on issue 474 by xiaof...@google.com: fix handling of Atomic64 on x32 ABIs http://code.google.com/p/protobuf/issues/detail?id=474 Fixed in r492. -- You received this message because this project is configured to send all issue notifications to this

[protobuf] Re: Issue 469 in protobuf: how to write/read more than one piece of message to/from a text file in c++

2013-03-04 Thread protobuf
Comment #6 on issue 469 by wuy...@gmail.com: how to write/read more than one piece of message to/from a text file in c++ http://code.google.com/p/protobuf/issues/detail?id=469 As said by https://developers.google.com/protocol-buffers/docs/techniques, the following code is passed to test. G

RE: [protobuf] Linker error

2013-03-04 Thread Mohammad Husain
Hi all, With Ilia's help I could make some progress. I could come up with a Makefile which demonstrates that the problem is definitely with the way I am writing the Makefile: all: hello_protobuf DEBUG = -g LDFLAGS += `pkg-config --cflags --libs protobuf` CXXFLAGS += `pkg-config --cflags --lib

[protobuf] Re: 2.5.0 released.

2013-03-04 Thread Feng Xiao
A note on the "allow_alias" option: we plan to flip the default value to "false" in a future release. Projects using enum aliases should set this option to "true" in their proto files, otherwise they might be broken by future protobuf releases. On Wednesday, February 27, 2013 12:02:19 AM UTC-8,

[protobuf] Re: 2.5.0 released.

2013-03-04 Thread Joshua Foster
The release looks really good. When can see the release on Maven Central? Joshua On Wednesday, February 27, 2013 3:02:19 AM UTC-5, Feng Xiao wrote: > > The final release of Protobuf 2.5.0 is now available: > http://code.google.com/p/protobuf/downloads/list > > Documentation will be updated soon.

[protobuf] Re: Issue 474 in protobuf: fix handling of Atomic64 on x32 ABIs

2013-03-04 Thread protobuf
Comment #2 on issue 474 by vap...@chromium.org: fix handling of Atomic64 on x32 ABIs http://code.google.com/p/protobuf/issues/detail?id=474 i think this is only broken for x32 targets (which is a 32bit ABI for x86_64 platforms). the NaCL port is the same thing -- it's x32 on x86_64. thes

[protobuf] Re: Issue 474 in protobuf: fix handling of Atomic64 on x32 ABIs

2013-03-04 Thread protobuf
Updates: Status: Accepted Owner: xiaof...@google.com Comment #1 on issue 474 by xiaof...@google.com: fix handling of Atomic64 on x32 ABIs http://code.google.com/p/protobuf/issues/detail?id=474 Thanks. I'll help apply this patch to protobuf trunk. BTW, on what platform will the

[protobuf] Re: Issue 475 in protobuf: Build Visual Studio 2010 fails

2013-03-04 Thread protobuf
Updates: Status: WontFix Owner: xiaof...@google.com Comment #1 on issue 475 by xiaof...@google.com: Build Visual Studio 2010 fails http://code.google.com/p/protobuf/issues/detail?id=475 The runtime configuration of gtest's .vcproj has problems. You can either use the release

Re: [protobuf] Build Visual Studio 2010 fails

2013-03-04 Thread Feng Xiao
You can use the released version, or apply this patch yourself: http://code.google.com/p/protobuf/source/detail?r=480 On Sun, Mar 3, 2013 at 1:46 PM, lasse wrote: > I just took protobuf of from SVN and build it in Visual Studio 2010, but > it fails because of a link error. Did anyone make this w