From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24767 invoked by alias); 20 Jan 2015 17:36:20 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 24758 invoked by uid 89); 20 Jan 2015 17:36:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout24.012.net.il Received: from mtaout24.012.net.il (HELO mtaout24.012.net.il) (80.179.55.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 20 Jan 2015 17:36:17 +0000 Received: from conversion-daemon.mtaout24.012.net.il by mtaout24.012.net.il (HyperSendmail v2007.08) id <0NIH00700K7M2T00@mtaout24.012.net.il> for gdb-patches@sourceware.org; Tue, 20 Jan 2015 19:26:19 +0200 (IST) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout24.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NIH00NQTKFVFO80@mtaout24.012.net.il>; Tue, 20 Jan 2015 19:26:19 +0200 (IST) Date: Tue, 20 Jan 2015 17:36:00 -0000 From: Eli Zaretskii Subject: "make TAGS" broken in 7.8.90 To: gdb-patches@sourceware.org Cc: Sergio Durigan Junior Reply-to: Eli Zaretskii Message-id: <83twzlwe3p.fsf@gnu.org> X-IsSubscribed: yes X-SW-Source: 2015-01/txt/msg00543.txt.bz2 "make TAGS" is broken. Again. (Sergio, would it make sense to add "make TAGS" to the list of commands run by the buildbot after a build? This breaks too often, IMO.) Doing TAGS in gdb make[2]: Entering directory `/d/usr/eli/utils/gdb-7.8.90/gdb' make[2]: *** No rule to make target `ada-varobj.h', needed by `TAGS'. make[2]: Target `TAGS' not remade because of errors. ./x86-dregs.c: No such file or directory ./irix5-nat.c: No such file or directory ada-varobj.h and irix5-nat.c should simply be removed from the respective lists. But I'm not sure how to fix the x86-dregs.c issue. The problem here is that x86-dregs.o is in gdb/, but the source is in gdb/nat/, so the simplistic editing: done) | sed 's/\.o$$/\.c/'` \ doesn't work. Thoughts? One other annoyance with "make TAGS" is that libdecnumber doesn't support that target, so you must invoke the command from gdb/, or use "make -k", otherwise it bails out. Any reason not to support TAGS in libdecnumber?