I have been playing with Google Protocol Buffers lately and have created a sample application with them.
When I run strings on my final binary, I see a lot of Google Protocol Buffers strings. Upon further investigation, there are a lot of calls to GOOGLE_LOG, GOOGLE_LOG_IF, and other Google macros that are ultimately overloading the stream operator. These strings are all error messages that I do not want in my binary (and do not appear to be needed for Google Protocol Buffers to work correctly).
Does anyone know an easy way to disable these strings from appears other than going through all the Google Protocol Buffers source and removing the error messages?
option optimize_for = CODE_SIZE;and/oroption optimize_for = LITE_RUNTIME;? They might help. If it doesn't work you can still open an enhancement request to Google :) – foch Feb 18 '12 at 0:42option optimize_for = LITE_RUNTIME;in my.protosource file. I think an enhancement request may be in order. Thanks! – thpatel Feb 20 '12 at 19:38