public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/48460] New: The compilation of Qemu 0.14.0 stops on a ARM cpu based board
@ 2011-04-05 12:10 marietto2008 at gmail dot com
  2011-04-05 12:19 ` [Bug c/48460] " redi at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: marietto2008 at gmail dot com @ 2011-04-05 12:10 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48460

           Summary: The compilation of Qemu 0.14.0 stops on a ARM cpu
                    based board
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: blocker
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: marietto2008@gmail.com


I'm trying to compile qemu 0.14.0 on the Insignia Infocast 8" (its a chumby
based device : www.chumby.com) it is based on a ARM cpu based board. 

chumby:/qemu/i386-softmmu# uname -a
Linux chumby 2.6.28-M2.1.8.12 #1 Thu Dec 9 13:04:27 PST 2010 armv5tejl
GNU/Linux

The compilation stops on the translate.o file :

chumby:/qemu# apt-get install git-core gitweb
chumby:/qemu# git clone git://git.qemu.org/qemu.git
chumby:/qemu# cd qemu
chumby:/qemu# ./configure
chumby:/qemu# make

  CC    i386-softmmu/translate.o
gcc: Internal error: Killed (program cc1)
Please submit a full bug report.
See <file:///usr/share/doc/gcc-4.3/README.Bugs> for instructions.
make[1]: *** [translate.o] Error 1
make: *** [subdir-i386-softmmu] Error 2
chumby:/qemu#

chumby:/# gcc -v
Using built-in specs.
Target: arm-linux-gnueabi
Configured with: ../src/configure -v --with-pkgversion='Debian 4.3.2-1.1'
--with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs
--enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared
--with-system-zlib --libexecdir=/usr/lib --without-included-gettext
--enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3
--program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug
--enable-objc-gc --enable-mpfr --disable-libssp --disable-sjlj-exceptions
--enable-checking=release --build=arm-linux-gnueabi --host=arm-linux-gnueabi
--target=arm-linux-gnueabi
Thread model: posix
gcc version 4.3.2 (Debian 4.3.2-1.1)


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug c/48460] The compilation of Qemu 0.14.0 stops on a ARM cpu based board
  2011-04-05 12:10 [Bug c++/48460] New: The compilation of Qemu 0.14.0 stops on a ARM cpu based board marietto2008 at gmail dot com
@ 2011-04-05 12:19 ` redi at gcc dot gnu.org
  2011-04-05 12:53 ` rguenth at gcc dot gnu.org
  2011-04-05 13:03 ` marietto2008 at gmail dot com
  2 siblings, 0 replies; 4+ messages in thread
From: redi at gcc dot gnu.org @ 2011-04-05 12:19 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48460

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c++                         |c
            Version|unknown                     |4.3.2
           Severity|blocker                     |normal


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug c/48460] The compilation of Qemu 0.14.0 stops on a ARM cpu based board
  2011-04-05 12:10 [Bug c++/48460] New: The compilation of Qemu 0.14.0 stops on a ARM cpu based board marietto2008 at gmail dot com
  2011-04-05 12:19 ` [Bug c/48460] " redi at gcc dot gnu.org
@ 2011-04-05 12:53 ` rguenth at gcc dot gnu.org
  2011-04-05 13:03 ` marietto2008 at gmail dot com
  2 siblings, 0 replies; 4+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-04-05 12:53 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48460

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |INVALID

--- Comment #1 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-04-05 12:51:38 UTC ---
gcc: Internal error: Killed (program cc1)

you ran out of memory.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug c/48460] The compilation of Qemu 0.14.0 stops on a ARM cpu based board
  2011-04-05 12:10 [Bug c++/48460] New: The compilation of Qemu 0.14.0 stops on a ARM cpu based board marietto2008 at gmail dot com
  2011-04-05 12:19 ` [Bug c/48460] " redi at gcc dot gnu.org
  2011-04-05 12:53 ` rguenth at gcc dot gnu.org
@ 2011-04-05 13:03 ` marietto2008 at gmail dot com
  2 siblings, 0 replies; 4+ messages in thread
From: marietto2008 at gmail dot com @ 2011-04-05 13:03 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48460

--- Comment #2 from Marietto <marietto2008 at gmail dot com> 2011-04-05 13:02:21 UTC ---
(In reply to comment #1)
> gcc: Internal error: Killed (program cc1)
> 
> you ran out of memory.

I've read somewhere that's possible to compile qemu without to go out of
memory.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-04-05 13:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-05 12:10 [Bug c++/48460] New: The compilation of Qemu 0.14.0 stops on a ARM cpu based board marietto2008 at gmail dot com
2011-04-05 12:19 ` [Bug c/48460] " redi at gcc dot gnu.org
2011-04-05 12:53 ` rguenth at gcc dot gnu.org
2011-04-05 13:03 ` marietto2008 at gmail dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).