From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 64535 invoked by alias); 30 Aug 2017 19:01:02 -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 64085 invoked by uid 89); 30 Aug 2017 19:01:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=no version=3.3.2 spammy= 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 ESMTP; Wed, 30 Aug 2017 19:00:52 +0000 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id D4FB5C0587E6; Wed, 30 Aug 2017 19:00:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com D4FB5C0587E6 Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=jan.kratochvil@redhat.com Received: from host1.jankratochvil.net (ovpn-117-146.ams2.redhat.com [10.36.117.146]) by smtp.corp.redhat.com (Postfix) with ESMTPS id EDCA15C7BE; Wed, 30 Aug 2017 19:00:49 +0000 (UTC) Date: Wed, 30 Aug 2017 19:01:00 -0000 From: Jan Kratochvil To: Weimin Pan Cc: gdb-patches@sourceware.org, Pedro Alves Subject: ping: [PATCH v3] Unbreak gdb build on 32-bit host with ADI support Message-ID: <20170830190047.GA21442@host1.jankratochvil.net> References: <1503707605-65627-1-git-send-email-weimin.pan@oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1503707605-65627-1-git-send-email-weimin.pan@oracle.com> User-Agent: Mutt/1.8.3 (2017-05-23) X-SW-Source: 2017-08/txt/msg00531.txt.bz2 On Sat, 26 Aug 2017 02:33:25 +0200, Weimin Pan wrote: > The problem of failing to build with arm-linux-gnueabihf-g++-4.8 was > that type CORE_ADDR is of "unsigned long" on a 64-bit machine so it's > OK to use %lx but is of type "unsigned long long" on a 32 bit system. This is a bit annoying during testing, could there be an approval? Jan