[protobuf] Re: Issue 488 in protobuf: powerpc-linux cross compilation not compiling anymore

2013-04-18 Thread protobuf
Comment #2 on issue 488 by ch.pries...@gmail.com: powerpc-linux cross compilation not compiling anymore http://code.google.com/p/protobuf/issues/detail?id=488 Currently I switched back to 2.4.1, which works fine. For future version upgrades I can provide patch. regards -- You received

[protobuf] Re: Issue 502 in protobuf: protoc generated Java code has numerous javadoc warnings

2013-04-18 Thread protobuf
Updates: Status: Accepted Owner: xiaof...@google.com Comment #3 on issue 502 by xiaof...@google.com: protoc generated Java code has numerous javadoc warnings http://code.google.com/p/protobuf/issues/detail?id=502 I see. So the generated javadoc isn't well formed. We should

[protobuf] Re: Is it possible to statically link protobuf without using pthread?

2013-04-18 Thread Dale Peterson
I'm also trying to do the same thing, specifically for an embedded ARM Cortex-M4 processor. I am using the GCC ARM Embedded [0] toolchain. Did you have any luck with this? Dale [0] -- https://launchpad.net/gcc-arm-embedded On Tuesday, January 15, 2013 4:00:05 AM UTC-8, hash code wrote: I

[protobuf] Re: Issue 248 in protobuf: protobuf will not compile without thread library

2013-04-18 Thread protobuf
Comment #17 on issue 248 by hazelnu...@gmail.com: protobuf will not compile without thread library http://code.google.com/p/protobuf/issues/detail?id=248 Has anybody determined the correct way to build protobuf without depending on a threading library? I want to use protobuf on a ARM

[protobuf] Protocol Buffers on an embedded system

2013-04-18 Thread Dale Peterson
I am collecting data from sensors with an ARM Cortex-M4 running and RTOS, and logging the data in binary format to an micro SD card, which is then periodically transferred to a PC for analysis. I am using the FatFS [0] FAT32 filesystem library along with the ChibiOS RTOS [1]. After a few

[protobuf] Re: Issue 248 in protobuf: protobuf will not compile without thread library

2013-04-18 Thread protobuf
Comment #18 on issue 248 by ronanpai...@gmail.com: protobuf will not compile without thread library http://code.google.com/p/protobuf/issues/detail?id=248 On my ARM Cortex-M3 project I just used protobuf-c and replaced the malloc() calls with static objects, since only one thread used the

[protobuf] Re: Issue 248 in protobuf: protobuf will not compile without thread library

2013-04-18 Thread protobuf
Comment #19 on issue 248 by hazelnu...@gmail.com: protobuf will not compile without thread library http://code.google.com/p/protobuf/issues/detail?id=248 Is that code up anywhere so I could check it out? By protobuf-c, you mean this one right: https://code.google.com/p/protobuf-c/ It