Re: [match-and-simplify] out of memory allocation error

2014-11-11 Thread Prathamesh Kulkarni
On Tue, Nov 11, 2014 at 4:03 PM, Prathamesh Kulkarni wrote: > I moved definition of simplify::simplify outside the class (as in the > attached patch), > and I get following error during stage1 build: > out of memory allocating 16301357976 bytes after a total of 2026800 bytes > make[2]: *** [s-matc

Re: [match-and-simplify] out of memory allocation error

2014-11-11 Thread Florian Weimer
On 11/11/2014 11:33 AM, Prathamesh Kulkarni wrote: Why does moving definition of simplify constructor outside the class cause out of memory allocation ? It's probably because you dropped the initialization of the capture_max member. -- Florian Weimer / Red Hat Product Security

[match-and-simplify] out of memory allocation error

2014-11-11 Thread Prathamesh Kulkarni
I moved definition of simplify::simplify outside the class (as in the attached patch), and I get following error during stage1 build: out of memory allocating 16301357976 bytes after a total of 2026800 bytes make[2]: *** [s-match] Error 1 make[1]: *** [all-gcc] Error 2 make: *** [all] Error 2 Why