public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/47993] New: `internal error: Killed'
@ 2011-03-04 19:48 tim at klingt dot org
  2011-03-05 14:16 ` [Bug c++/47993] " rguenth at gcc dot gnu.org
  2011-03-05 14:58 ` tim at klingt dot org
  0 siblings, 2 replies; 3+ messages in thread
From: tim at klingt dot org @ 2011-03-04 19:48 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: `internal error: Killed'
           Product: gcc
           Version: 4.3.5
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: tim@klingt.org


Created attachment 23547
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=23547
preprocessed source

compiling attached file with 4.3.5 fails on x86-64/linux:

/usr/bin/g++-4.3 -v -save-temps   -ftemplate-depth-1000 -O3 -DNDEBUG   -o
CMakeFiles/simd_round_tests.dir/simd_round_tests.cpp.o -c
/home/tim/nightly/nova-simd/testsuite/simd_round_tests.cpp
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.3.5-3ubuntu1'
--with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs
--enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared
--enable-multiarch --enable-linker-build-id --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
--with-tune=generic --enable-checking=release --build=x86_64-linux-gnu
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.3.5 (Ubuntu 4.3.5-3ubuntu1) 
COLLECT_GCC_OPTIONS='-v' '-save-temps' '-ftemplate-depth-1000' '-O3' '-DNDEBUG'
'-o' 'CMakeFiles/simd_round_tests.dir/simd_round_tests.cpp.o' '-c'
'-shared-libgcc' '-mtune=generic'
 /usr/lib/gcc/x86_64-linux-gnu/4.3.5/cc1plus -E -quiet -v -D_GNU_SOURCE
-DNDEBUG /home/tim/nightly/nova-simd/testsuite/simd_round_tests.cpp
-D_FORTIFY_SOURCE=2 -mtune=generic -ftemplate-depth-1000 -O3 -fpch-preprocess
-fstack-protector -o simd_round_tests.ii
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory
"/usr/lib/gcc/x86_64-linux-gnu/4.3.5/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
 /usr/include/c++/4.3
 /usr/include/c++/4.3/x86_64-linux-gnu
 /usr/include/c++/4.3/backward
 /usr/local/include
 /usr/lib/gcc/x86_64-linux-gnu/4.3.5/include
 /usr/lib/gcc/x86_64-linux-gnu/4.3.5/include-fixed
 /usr/include/x86_64-linux-gnu
 /usr/include
End of search list.
COLLECT_GCC_OPTIONS='-v' '-save-temps' '-ftemplate-depth-1000' '-O3' '-DNDEBUG'
'-o' 'CMakeFiles/simd_round_tests.dir/simd_round_tests.cpp.o' '-c'
'-shared-libgcc' '-mtune=generic'
 /usr/lib/gcc/x86_64-linux-gnu/4.3.5/cc1plus -fpreprocessed simd_round_tests.ii
-quiet -dumpbase simd_round_tests.cpp -mtune=generic -auxbase-strip
CMakeFiles/simd_round_tests.dir/simd_round_tests.cpp.o -O3 -version
-ftemplate-depth-1000 -fstack-protector -o simd_round_tests.s
GNU C++ (Ubuntu 4.3.5-3ubuntu1) version 4.3.5 (x86_64-linux-gnu)
        compiled by GNU C version 4.3.5, GMP version 4.3.2, MPFR version
3.0.0-p3.
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: da2f447077ad50d1c10a3e19de5aa517
g++-4.3: Internal error: Killed (program cc1plus)
Please submit a full bug report.
See <file:///usr/share/doc/gcc-4.3/README.Bugs> for instructions.


g++-4.4 and 4.5 compile this code nicely


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

* [Bug c++/47993] `internal error: Killed'
  2011-03-04 19:48 [Bug c++/47993] New: `internal error: Killed' tim at klingt dot org
@ 2011-03-05 14:16 ` rguenth at gcc dot gnu.org
  2011-03-05 14:58 ` tim at klingt dot org
  1 sibling, 0 replies; 3+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-03-05 14:16 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #1 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-03-05 14:16:48 UTC ---
You ran out of memory.  If 4.4 and 4.5 work you can try --param
max-fields-for-field-sensitive=1 as a workaround.

Otherwise, "fixed in 4.4".


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

* [Bug c++/47993] `internal error: Killed'
  2011-03-04 19:48 [Bug c++/47993] New: `internal error: Killed' tim at klingt dot org
  2011-03-05 14:16 ` [Bug c++/47993] " rguenth at gcc dot gnu.org
@ 2011-03-05 14:58 ` tim at klingt dot org
  1 sibling, 0 replies; 3+ messages in thread
From: tim at klingt dot org @ 2011-03-05 14:58 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from tim blechmann <tim at klingt dot org> 2011-03-05 14:58:35 UTC ---
thanks ... didn't think of running out of memory on a 12gb machine


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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-04 19:48 [Bug c++/47993] New: `internal error: Killed' tim at klingt dot org
2011-03-05 14:16 ` [Bug c++/47993] " rguenth at gcc dot gnu.org
2011-03-05 14:58 ` tim at klingt dot org

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).