From patchwork Tue Nov 21 22:10:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 24421 Received: (qmail 40355 invoked by alias); 21 Nov 2017 22:10:32 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 40241 invoked by uid 89); 21 Nov 2017 22:10:32 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KB_WAM_FROM_NAME_SINGLEWORD, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=formato, UD:debug.c, debugc, debug.c X-HELO: gateway32.websitewelcome.com Received: from gateway32.websitewelcome.com (HELO gateway32.websitewelcome.com) (192.185.145.115) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 21 Nov 2017 22:10:30 +0000 Received: from cm13.websitewelcome.com (cm13.websitewelcome.com [100.42.49.6]) by gateway32.websitewelcome.com (Postfix) with ESMTP id D3D7A1CBAD35 for ; Tue, 21 Nov 2017 16:10:28 -0600 (CST) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id HGkOewOu8rWstHGkOecRPC; Tue, 21 Nov 2017 16:10:28 -0600 Received: from 71-218-90-63.hlrn.qwest.net ([71.218.90.63]:35604 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.89) (envelope-from ) id 1eHGkO-0048Hi-L7; Tue, 21 Nov 2017 16:10:28 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [RFA 11/13] Add missing files to COMMON_SFILES Date: Tue, 21 Nov 2017 15:10:21 -0700 Message-Id: <20171121221023.23992-12-tom@tromey.com> In-Reply-To: <20171121221023.23992-1-tom@tromey.com> References: <20171121221023.23992-1-tom@tromey.com> X-BWhitelist: no X-Source-L: No X-Exim-ID: 1eHGkO-0048Hi-L7 X-Source-Sender: 71-218-90-63.hlrn.qwest.net (bapiya.Home) [71.218.90.63]:35604 X-Source-Auth: tom+tromey.com X-Email-Count: 12 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTM3OS5ibHVlaG9zdC5jb20= X-Local-Domain: yes While working on the previous patch, I found a few .o files whose corresponding .c file was not mentioned in Makefile.in. This patch fixes the problem. I pulled this out separately to make it simpler to review. ChangeLog 2017-11-21 Tom Tromey * Makefile.in (COMMON_OBS): Remove filename-seen-cache.o, registry.o, thread-fsm.o, debug.o. (COMMON_SFILES): Add filename-seen-cache.c, registry.c, thread-fsm.c, debug.c. --- gdb/ChangeLog | 7 +++++++ gdb/Makefile.in | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 4161361ce3..69369cca8a 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -953,6 +953,7 @@ COMMON_SFILES = \ d-namespace.c \ d-valprint.c \ dbxread.c \ + debug.c \ demangle.c \ dictionary.c \ disasm.c \ @@ -972,6 +973,7 @@ COMMON_SFILES = \ f-lang.c \ f-typeprint.c \ f-valprint.c \ + filename-seen-cache.c \ filesystem.c \ findcmd.c \ findvar.c \ @@ -1044,6 +1046,7 @@ COMMON_SFILES = \ record-full.c \ regcache.c \ reggroups.c \ + registry.c \ reverse.c \ rust-lang.c \ selftest-arch.c \ @@ -1066,6 +1069,7 @@ COMMON_SFILES = \ target-descriptions.c \ target-memory.c \ thread.c \ + thread-fsm.c \ tid-parse.c \ top.c \ trad-frame.c \ @@ -1538,12 +1542,10 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ job-control.o \ common-regcache.o \ common-utils.o \ - debug.o \ environ.o \ errors.o \ exec.o \ fileio.o \ - filename-seen-cache.o \ filestuff.o \ format.o \ gdb_tilde_expand.o \ @@ -1552,13 +1554,11 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ new-op.o \ print-utils.o \ ptid.o \ - registry.o \ rsp-low.o \ run-time-clock.o \ selftest.o \ signals.o \ signals-state-save-restore.o \ - thread-fsm.o \ vec.o \ version.o \ waitstatus.o \