Re: buildworld c++ internal error

2012-08-21 Thread Michael Butler
On Mon, August 20, 2012 17:54, Randy Bush wrote: -O allowed it to buildworld! Should be marginally faster compiling too .. good to hear :-) imb ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current

Re: buildworld c++ internal error

2012-08-21 Thread Dimitry Andric
On 2012-08-19 16:01, Randy Bush wrote: ... c++ -O2 -pipe -DIPFIREWALL_NAT -march=pentium -I/usr/src/lib/clang/libllvmcore/../../../contrib/llvm/include -I/usr/src/lib/clang/libllvmcore/../../../contrib/llvm/tools/clang/include -I/usr/src/lib/clang/libllvmcore/../../../contrib/llvm/lib/VMCore

Re: buildworld c++ internal error

2012-08-20 Thread Peter Jeremy
On 2012-Aug-20 07:17:59 +0900, Randy Bush ra...@psg.com wrote: the only thing a night's sleep got me was the idea of attaching an external sata drive and putting swap on it. You can also swap to a file via NFS. -- Peter Jeremy pgp62N8KdUtmP.pgp Description: PGP signature

Re: buildworld c++ internal error

2012-08-20 Thread Randy Bush
-O allowed it to buildworld! randy ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: buildworld c++ internal error

2012-08-19 Thread Ryan Stone
Is the system running out of memory? A message will go to dmesg if so. On Aug 19, 2012 10:01 AM, Randy Bush ra...@psg.com wrote: soekris 5501, been running fbsd since 6.x csup Aug 18 22:38 gmt rm -rf /usr/obj buildworld c++ -O2 -pipe -DIPFIREWALL_NAT -march=pentium

Re: buildworld c++ internal error

2012-08-19 Thread Randy Bush
Is the system running out of memory? A message will go to dmesg if so. bingo! thank you. pid 73951 (cc1plus), uid 0, was killed: out of swap space as this is a 8g cd card machine, i may have a problem. it's not as if i can boot a cd rom and run shrinkfs randy

Re: buildworld c++ internal error

2012-08-19 Thread Ryan Stone
Are you running make with -j something? You may have to scale that back, unfortunately. C++ compilers seem to be much more memory hungry than straight C compilers. On Aug 19, 2012 10:39 AM, Randy Bush ra...@psg.com wrote: Is the system running out of memory? A message will go to dmesg if so.

Re: buildworld c++ internal error

2012-08-19 Thread Michael Butler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/19/12 10:39, Randy Bush wrote: Is the system running out of memory? A message will go to dmesg if so. bingo! thank you. pid 73951 (cc1plus), uid 0, was killed: out of swap space as this is a 8g cd card machine, i may have a problem.

Re: buildworld c++ internal error

2012-08-19 Thread Garrett Cooper
On Sun, Aug 19, 2012 at 10:59 AM, Ryan Stone ryst...@gmail.com wrote: Are you running make with -j something? You may have to scale that back, unfortunately. C++ compilers seem to be much more memory hungry than straight C compilers. It depends on how complex the code is as well (IIRC

Re: buildworld c++ internal error

2012-08-19 Thread Randy Bush
Ryan Stone wrote: Are you running make with -j something? no way C++ compilers seem to be much more memory hungry than straight C compilers. c++ is far too crufty and clever. no free lunch. Michael Butler wrote: The only other option I can think of is to reduce the level of optimization,