This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

map< string, string > breaks egcs.


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]