Re: [protobuf] exceptions on freebsd

2010-06-09 Thread Kenton Varda
Despite the string's contents, it is not thrown by protobuf code. I don't know what to tell you. On Wed, Jun 9, 2010 at 3:43 PM, Monty Taylor wrote: > On 06/09/2010 02:10 PM, Kenton Varda wrote: > > Odd. The protobuf code does not use C++ exceptions at all. > > > > To make a debug build, just

Re: [protobuf] exceptions on freebsd

2010-06-09 Thread Monty Taylor
On 06/09/2010 02:10 PM, Kenton Varda wrote: > Odd. The protobuf code does not use C++ exceptions at all. > > To make a debug build, just use CXXFLAGS=-g2 or something. (If you > don't specify CXXFLAGS manually, protobuf's configure script adds > -DNDEBUG, on the assumption that the majority of u

Re: [protobuf] exceptions on freebsd

2010-06-09 Thread Kenton Varda
Odd. The protobuf code does not use C++ exceptions at all. To make a debug build, just use CXXFLAGS=-g2 or something. (If you don't specify CXXFLAGS manually, protobuf's configure script adds -DNDEBUG, on the assumption that the majority of users don't want debug builds.) On Wed, Jun 9, 2010 at

[protobuf] exceptions on freebsd

2010-06-09 Thread Monty Taylor
Hey! I'm getting a weird error with an exception thrown on freebsd not being catchable by a catch (...) block... But first - how do I do a debug build of protobuf? I was going to first try building a debug build to see if helped me track down what was going on. More directly though - any thought