From patchwork Wed Nov 18 13:09:12 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pedro Alves X-Patchwork-Id: 9716 Received: (qmail 120686 invoked by alias); 18 Nov 2015 13:09:17 -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 120664 invoked by uid 89); 18 Nov 2015 13:09:16 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 18 Nov 2015 13:09:15 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 2BCD0C100463 for ; Wed, 18 Nov 2015 13:09:14 +0000 (UTC) Received: from brno.lan (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tAID9Ddq006112 for ; Wed, 18 Nov 2015 08:09:13 -0500 From: Pedro Alves To: gdb-patches@sourceware.org Subject: [pushed/ob] [gdbserver/ipa] Fix build dependencies Date: Wed, 18 Nov 2015 13:09:12 +0000 Message-Id: <1447852152-31353-1-git-send-email-palves@redhat.com> Commit 91ee7171d088 (MinGW and attribute format(printf/gnu_printf)) made common/common-defs.h depend on gnulib's substitute headers. Turns out that that broke the gdbserver/ipa build (as the buildbots discovered) because nothing is making sure that gnulib is built before the ipa is. gdb/gdbserver/ChangeLog: 2015-11-18 Pedro Alves * Makefile.in (all_object_files): Add $IPA_OBJS. --- gdb/gdbserver/ChangeLog | 4 ++++ gdb/gdbserver/Makefile.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index a919a08..798c5df 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2015-11-18 Pedro Alves + + * Makefile.in (all_object_files): Add $IPA_OBJS. + 2015-11-17 Pedro Alves * win32-low.c (win32_resume): Use gdb_signal_from_host, diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index 97e1e62..f18243b 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -835,7 +835,7 @@ reg-tilegx32.c : $(srcdir)/../regformats/reg-tilegx32.dat $(regdat_sh) # A list of all the objects we might care about in this build, for # dependency tracking. -all_object_files = $(OBS) $(GDBREPLAY_OBS) +all_object_files = $(OBS) $(GDBREPLAY_OBS) $(IPA_OBJS) # Ensure that generated files are created early. Use order-only # dependencies if available. They require GNU make 3.80 or newer,