This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
map< string, string > breaks egcs.
- To: egcs at cygnus dot com
- Subject: map< string, string > breaks egcs.
- From: Ben Scherrey <scherrey at gte dot net>
- Date: Wed, 07 Oct 1998 15:36:27 -0400
- Organization: Proteus Technologies, Inc.
- Reply-To: scherrey at proteus-tech dot com
I'm running egcs-2.91.57 on an HP/Ux 10 box. The following code works:
-- file Test1.cpp
#include <stl.h>
#include <string>
map< int, int > Test;
-- eof
but if I build the following:
-- file Test2.cpp
#include <stl.h>
#include <string>
map< string, string > Test;
-- eof
with: g++ -c Test2.cpp
I get the following:
g++: Internal compiler error: program as got fatal signal 11
Help!!!!
Ben Scherrey