From owner-cvs-gnu Sun Oct 13 23:36:51 1996 Return-Path: owner-cvs-gnu Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA02262 for cvs-gnu-outgoing; Sun, 13 Oct 1996 23:36:51 -0700 (PDT) Received: from ilsa.systemsix.com (ilsa.systemsix.com [198.99.86.129]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id XAA02254; Sun, 13 Oct 1996 23:36:48 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by ilsa.systemsix.com (8.7.5/8.6.12) with SMTP id AAA13761; Mon, 14 Oct 1996 00:36:40 -0600 (MDT) Message-Id: <199610140636.AAA13761@ilsa.systemsix.com> X-Authentication-Warning: ilsa.systemsix.com: Host localhost [127.0.0.1] didn't use HELO protocol X-Mailer: exmh version 1.6.5 12/11/95 To: Peter Wemm cc: CVS-committers@freefall.freebsd.org, cvs-all@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/cc Makefile src/gnu/usr.bin/cc/c++filt Makefile In-reply-to: Your message of "Sun, 13 Oct 1996 10:37:04 PDT." <199610131737.KAA27267@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 14 Oct 1996 00:36:40 -0600 From: Steve Passe Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Build/install c++filt from g++, we already have all the sources and > it's and useful. (Ever tried to read 'nm' and 'ldd -v' output on a c++ > object or library? :-) This filter decodes the mangled symbol names.) I find it real useful in my makefiles. modify them to pipe the output thru c++filt and it demangles the ERRORs that refer to variables etc: g++ -o mtthread mtthread.o |& c++filt