bug-cgicc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: cgicc on Alpha, Compaq C++compiler


From: Stephen F. Booth
Subject: RE: cgicc on Alpha, Compaq C++compiler
Date: Fri, 20 Oct 2000 07:16:02 -0500

> cgicc-3.1.3 compiled with gcc-2.95.2(from SuSe-Linux AXP 6.4) on the
> Alpha
> produces "unaligned traps", as follows:
>
> Oct 13 14:03:35 localhost kernel: agent(16039): unaligned trap at
> 000002000000eb58: 0000020000622f0c 29 1
> Oct 13 14:03:35 localhost kernel: agent(16039): unaligned trap at
> 000002000000eb60: 0000020000622f0c 2d 1
>

I think this is a compiler problem; I'm not sure how to alter the cgicc code
to get it to compile in this case.  The thread you pointed me to indicated
the same thing.  I don't know anything about the alpha platform.

> Compiling cgicc with the Compaq C++ compiler is unsuccessful with alot
> of errors, please see the attached file.

That's strange.  I assume the Compaq compiler has support for namespaces and
the C++ STL?  Most of those errors seem related to iostream stuff that
_should_ be in the std namespace.  If you write a simple C++ program:

#include <iostream>
int
main(int argc, char **argv)
{
  std::ofstream file("/tmp/foo", std::ios::out);
  file << "foo!" << endl;
}

Does it compile?




reply via email to

[Prev in Thread] Current Thread [Next in Thread]