Subject: Compiling C++ with 1.3ALPHA snapshot
To: None <port-arm32@NetBSD.ORG>
From: Mike Pumford <mpumford@black-star.demon.co.uk>
List: port-arm32
Date: 12/26/1997 00:03:39
I like others have been experimenting with C++ code and have discovered
why some people can build C++ programs and others cannot.

using the program:

#include<iostream.h>

int main(int argc, char **argv)
{
  cout << "Hello World\n";
  return 0;
}

Compiled with g++ the program dumps core when executed with an illegal
system call.

When compiled with c++ the program works correctly.

Mike