From patchwork Tue Oct 15 21:05:51 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Burgess X-Patchwork-Id: 35024 Received: (qmail 41704 invoked by alias); 15 Oct 2019 21:06:00 -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 41641 invoked by uid 89); 15 Oct 2019 21:05:59 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-23.8 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=H*MI:andrew X-HELO: mail-wm1-f44.google.com Received: from mail-wm1-f44.google.com (HELO mail-wm1-f44.google.com) (209.85.128.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 15 Oct 2019 21:05:58 +0000 Received: by mail-wm1-f44.google.com with SMTP id f22so492362wmc.2 for ; Tue, 15 Oct 2019 14:05:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=embecosm.com; s=google; h=from:to:cc:subject:date:message-id; bh=V/bUkigRNKv9pZsINfI7qJly1RW2lw0h06nnsui97LU=; b=V/CEtFVqK0Z7F7g7xRge4BPYqwpGJqo3xJGsj7kXPSOow5pnvgd5NZIPvQsCpx9uBJ bu4BdxJO4lWEMyXwpsL7BJzs1aLX3rs/mXGCK6pB3mUUET5/Hgg5vkPC5kLKuwuAj6+a JPeCo9yBks/gO1oXJF0xCiARDZCsVvIqtXDrTCi6B/HcxPhprFceYlsXiX6+uTq0R0/0 ab6HpNJEAl1vIBXtZrlS9t0JYSTgiShZy1tsh1XkwmPk93VHuEgc+erO8CD4KGEtpidq Rl/fXIhk2AxN6vAGIdHd/AesWJWSgPOAD/xnTgsGQwaxDanj4Fb/77cRMGnQsExL0XGk N2Yw== Return-Path: Received: from localhost (host86-128-12-122.range86-128.btcentralplus.com. [86.128.12.122]) by smtp.gmail.com with ESMTPSA id y14sm32308623wrd.84.2019.10.15.14.05.54 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 15 Oct 2019 14:05:54 -0700 (PDT) From: Andrew Burgess To: gdb-patches Cc: Andrew Burgess Subject: [PUSHED] gdb/gdbserver: Remove reference to vec-ipa.o Date: Tue, 15 Oct 2019 22:05:51 +0100 Message-Id: <20191015210551.29733-1-andrew.burgess@embecosm.com> X-IsSubscribed: yes This comit: commit 0dc327459b19e6765c8fe80957f5c8620611628e Date: Mon Oct 7 16:38:53 2019 +0100 gdb: Remove vec.{c,h} and update code to not include vec.h Broke the GDB build due to leaving a reference to vec-ipa.o in the Makefile.in, this file is built from vec.c which has been removed. I got away with this as I had an old version of the vec-ipa.o file still in my build tree. With this commit in place a clean build now completed successfully. gdb/ChangeLog: * Makefile.in: Remove references to vec-ipa.o. Change-Id: I4cf55951158dd7ee8f60cd054311a7c367e1d7bf --- gdb/gdbserver/ChangeLog | 4 ++++ gdb/gdbserver/Makefile.in | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index c83cb3d3631..34d8060c256 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -426,7 +426,6 @@ IPA_OBJS = \ gdbsupport/print-utils-ipa.o \ gdbsupport/rsp-low-ipa.o \ gdbsupport/tdesc-ipa.o \ - gdbsupport/vec-ipa.o \ regcache-ipa.o \ remote-utils-ipa.o \ tdesc-ipa.o \