From patchwork Thu Aug 1 18:14:55 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 33905 Received: (qmail 99651 invoked by alias); 1 Aug 2019 18:15:02 -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 99634 invoked by uid 89); 1 Aug 2019 18:15:02 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-22.6 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=FYI, HContent-Transfer-Encoding:8bit X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 01 Aug 2019 18:15:00 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 72577116A76; Thu, 1 Aug 2019 14:14:59 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id wzWtLwa8je-Z; Thu, 1 Aug 2019 14:14:59 -0400 (EDT) Received: from murgatroyd.Home (97-122-178-82.hlrn.qwest.net [97.122.178.82]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by rock.gnat.com (Postfix) with ESMTPSA id 1E9EF116942; Thu, 1 Aug 2019 14:14:59 -0400 (EDT) From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [FYI] Fix the ia64 libunwind build Date: Thu, 1 Aug 2019 12:14:55 -0600 Message-Id: <20190801181455.15377-1-tromey@adacore.com> MIME-Version: 1.0 This fixes the ia64 libunwind build. gdb/ChangeLog 2019-08-01 Tom Tromey * ia64-libunwind-tdep.h (struct libunwind_descr): Include gdbarch.h. --- gdb/ChangeLog | 5 +++++ gdb/ia64-libunwind-tdep.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/gdb/ia64-libunwind-tdep.h b/gdb/ia64-libunwind-tdep.h index 3ad3d44f367..06a8d5463d7 100644 --- a/gdb/ia64-libunwind-tdep.h +++ b/gdb/ia64-libunwind-tdep.h @@ -36,6 +36,8 @@ struct frame_unwind; running on. */ #include "libunwind-ia64.h" +#include "gdbarch.h" + struct libunwind_descr { int (*gdb2uw) (int);