From dev-return-8139-daniel=haxx.se@subversion.apache.org Fri Dec 3 17:39:50 2010 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on giant.haxx.se X-Spam-Level: X-Spam-Status: No, score=-1.5 required=3.0 tests=BAYES_00,T_RP_MATCHES_RCVD autolearn=ham version=3.3.1 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by giant.haxx.se (8.14.3/8.14.3/Debian-9.1) with SMTP id oB3GdnBk018027 for ; Fri, 3 Dec 2010 17:39:50 +0100 Received: (qmail 38895 invoked by uid 500); 3 Dec 2010 16:39:40 -0000 Mailing-List: contact dev-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@subversion.apache.org Received: (qmail 38880 invoked by uid 99); 3 Dec 2010 16:39:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Dec 2010 16:39:40 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_PASS Received-SPF: pass (athena.apache.org: domain of codematters@ntlworld.com designates 81.103.221.48 as permitted sender) Received: from [81.103.221.48] (HELO mtaout02-winn.ispmail.ntl.com) (81.103.221.48) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Dec 2010 16:39:33 +0000 Received: from aamtaout01-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout02-winn.ispmail.ntl.com (InterMail vM.7.08.04.00 201-2186-134-20080326) with ESMTP id <20101203163911.OZVN19887.mtaout02-winn.ispmail.ntl.com@aamtaout01-winn.ispmail.ntl.com>; Fri, 3 Dec 2010 16:39:11 +0000 Received: from stat.home.lan ([86.16.124.205]) by aamtaout01-winn.ispmail.ntl.com (InterMail vG.3.00.04.00 201-2196-133-20080908) with ESMTP id <20101203163911.IUDD20122.aamtaout01-winn.ispmail.ntl.com@stat.home.lan>; Fri, 3 Dec 2010 16:39:11 +0000 Received: by stat.home.lan (Postfix, from userid 1000) id 16CED360BB; Fri, 3 Dec 2010 16:39:09 +0000 (GMT) From: Philip Martin To: =?utf-8?Q?Tak=C3=A1cs_Andr=C3=A1s?= Cc: Daniel Shahaf , users@subversion.apache.org, dev@subversion.apache.org Subject: Re: subversion cross compile (arm) References: <20101201031212.GJ20866@daniel3.local> <20101201073521.GK8686@daniel3.local> <87fwufuqka.fsf@stat.home.lan> <878w07up87.fsf@stat.home.lan> <87lj46u9lq.fsf@stat.home.lan> Date: Fri, 03 Dec 2010 16:39:09 +0000 In-Reply-To: <87lj46u9lq.fsf@stat.home.lan> (Philip Martin's message of "Fri, 03 Dec 2010 16:03:45 +0000") Message-ID: <87hbeuu7yq.fsf@stat.home.lan> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Cloudmark-Analysis: v=1.1 cv=JvdXmxIgLJv2/GthKqHpGJEEHukvLcvELVXUanXFreg= c=1 sm=0 a=UmB-YHbscKgA:10 a=IkcTkHD0fZMA:10 a=UK53XgEPAAAA:8 a=pGLkceISAAAA:8 a=N1_E_TCA63imJ_Ia3HwA:9 a=l5WbJgyz3JbfyeJ9ihwV_weLQQMA:4 a=QEXdDO2ut3YA:10 a=vnJPXScvweQA:10 a=MSl-tDqOz04A:10 a=HpAAvcLHHh0Zw7uRqdWCyQ==:117 X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.3.5 (giant.haxx.se [80.67.6.50]); Fri, 03 Dec 2010 17:39:50 +0100 (CET) X-Friend: Nope Philip Martin writes: > Tak=C3=A1cs Andr=C3=A1s writes: > >> The next debug step is in the representation_string function. Before >> calling the apr_psprintf function, I printed out again the fields: >> >> rs rev 0 >> rs offs 4618628953320456192 > > in hex: 4018AA9000000000 > >> rs size 4 >> rs exp size 4 >> rs md5 2d2977d1c96f487abe4a1e202dd03b4e >> > > At a guess its a 32/64 bit issue. Are you using 64 file offsets? Obviously you are printing 64-bit offsets, so some part of your system uses 64-bit offsets. I think the problem is that some other part of your system is only writing 32-bits into 64-bits of memory, and leaving the higher 32-bits with random values. --=20 Philip