scott worley <folokai@earthlink.net> writes: > I was able to build the gcc-20020304 snapshot with GNAT by: Mainline or branch? > The compiler complains about cout not being defined. Must I provide a > path for c++ header files? cout is defined in namespace std, so you have to use "std::cout" (or "using namespace std;").