From owner-freebsd-current Thu Jul 11 9:14:44 2002 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA7DA37B400 for ; Thu, 11 Jul 2002 09:14:42 -0700 (PDT) Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id D062C43E52 for ; Thu, 11 Jul 2002 09:14:41 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g6BGEeY88034; Thu, 11 Jul 2002 10:14:40 -0600 (MDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g6BGEdG23513; Thu, 11 Jul 2002 10:14:39 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Thu, 11 Jul 2002 10:14:27 -0600 (MDT) Message-Id: <20020711.101427.116352789.imp@bsdimp.com> To: culverk@yumyumyum.org Cc: Benjamin.Close@unisa.edu.au, freebsd-current@FreeBSD.ORG Subject: Re: Status of C++ in base system? From: "M. Warner Losh" In-Reply-To: <20020711104234.U57635-100000@alpha.yumyumyum.org> References: <20020710.215728.14877807.imp@bsdimp.com> <20020711104234.U57635-100000@alpha.yumyumyum.org> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <20020711104234.U57635-100000@alpha.yumyumyum.org> Kenneth Culver writes: : I don't think kde3 compiles on the latest -CURRENT though, I've been : trying to compile that for several days, and every time the linker says : that things like cout and other standard c++ things aren't found. The cerr not found thing is one of two problems. gcc3 is pickier about namespace issues than gcc2, so you need to say std::cerr or using namespace std;. However, the more common case is people thinking they can link c++ programs with 'cc' rather than 'c++' My C++ programs are large enough that there are issues, but nothing this trivial. Usually it is bad C++ that the newer compiler is pickier about accepting. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message