From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19316 invoked by alias); 22 May 2014 09:07:36 -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 9447 invoked by uid 89); 22 May 2014 09:05:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: collaborate-mta1.arm.com Received: from fw-tnat.austin.arm.com (HELO collaborate-mta1.arm.com) (217.140.110.23) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 22 May 2014 09:05:58 +0000 Received: from [10.1.209.147] (e104577-lin.cambridge.arm.com [10.1.209.147]) by collaborate-mta1.arm.com (Postfix) with ESMTPS id 82DF413F841; Thu, 22 May 2014 04:05:56 -0500 (CDT) Message-ID: <537DBDF3.1080907@arm.com> Date: Thu, 22 May 2014 09:07:00 -0000 From: Ramana Radhakrishnan User-Agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 To: "gdb-patches@sourceware.org" CC: Marcus Shawcroft Subject: [Patch AArch64] Include asm/ptrace.h in aarch64-linux-nat.c Content-Type: multipart/mixed; boundary="------------070904080300000607040205" X-SW-Source: 2014-05/txt/msg00532.txt.bz2 This is a multi-part message in MIME format. --------------070904080300000607040205 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 416 Hi, A recent change to glibc removed asm/ptrace.h from user.h for AArch64. This meant that cross-native builds of gdb using trunk glibc broke because aarch64-linux-nat.c because user_hwdebug_state couldn't be found. Fixed by including asm/ptrace.h like other ports. Ok ? regards Ramana 2014-05-22 Ramana Radhakrishnan * aarch64-linux-nat.c (asm/ptrace.h): Include. --------------070904080300000607040205 Content-Type: text/plain; charset=us-ascii; name="p1.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="p1.txt" Content-length: 868 commit 53278fc086b53264d75ec9cb2a4929565276100a Author: Ramana Radhakrishnan Date: Thu May 22 09:41:41 2014 +0100 Include asm/ptrace.h for recent glibc changes. diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6f5c9c2..95df3e1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2014-05-22 Ramana Radhakrishnan + * aarch64-linux-nat.c (asm/ptrace.h): Include. + +2014-05-22 Ramana Radhakrishnan + * MAINTAINERS (Write After Approval): Move self back from Paper trail. diff --git a/gdb/aarch64-linux-nat.c b/gdb/aarch64-linux-nat.c index 28ad38b..877e702 100644 --- a/gdb/aarch64-linux-nat.c +++ b/gdb/aarch64-linux-nat.c @@ -33,6 +33,7 @@ #include #include +#include #include "gregset.h" --------------070904080300000607040205--