From owner-freebsd-alpha Thu Aug 31 23:49:15 2000 Delivered-To: freebsd-alpha@freebsd.org Received: from eel.radicalmedia.com (eel.radicalmedia.com [204.254.246.9]) by hub.freebsd.org (Postfix) with ESMTP id 6A8B737B42C for ; Thu, 31 Aug 2000 23:49:12 -0700 (PDT) Received: (from phiber@localhost) by eel.radicalmedia.com (8.9.3/8.9.3) id CAA11602 for freebsd-alpha@freebsd.org; Fri, 1 Sep 2000 02:49:10 -0400 (EDT) Date: Fri, 1 Sep 2000 02:49:09 -0400 From: Mark Abene To: freebsd-alpha@freebsd.org Subject: compaq's C++ compiler? Message-ID: <20000901024909.D28839@radicalmedia.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Anyone have any luck getting Compaq's C++ compiler for alphalinux working under emulation? The regular C compiler seems to work, but the C++ compiler can't seem to find header files. I already went through the process of brandelf'ing the binaries, and fixing all the broken symlinks, but still no go. The simple test program: #include main() { cout << "hello\n"; } ...produces: % /compat/linux/usr/bin/cxx -o temp temp.cc cxx: Error: temp.cc, line 1: could not open source file "iostream.h" #include ---------------------^ cxx: Error: temp.cc, line 5: identifier "cout" is undefined cout << "hello\n"; --------^ cxx: Error: temp.cc, line 5: expression must have integral or enum type cout << "hello\n"; ----------------^ cxx: Info: 3 errors detected in the compilation of "temp.cc". Same program works fine with g++. Thanks, -Mark To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message