From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31074 invoked by alias); 12 Jul 2013 00:59:22 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 31065 invoked by uid 89); 12 Jul 2013 00:59:21 -0000 X-Spam-SWARE-Status: No, score=-3.3 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_NO,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS,TW_BZ autolearn=ham version=3.3.1 Received: from plane.gmane.org (HELO plane.gmane.org) (80.91.229.3) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Fri, 12 Jul 2013 00:59:21 +0000 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UxRhd-0000qL-Rm for cygwin@cygwin.com; Fri, 12 Jul 2013 02:59:17 +0200 Received: from s70.gtokyofl21.vectant.ne.jp ([202.215.75.70]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 12 Jul 2013 02:59:17 +0200 Received: from yamaoka by s70.gtokyofl21.vectant.ne.jp with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 12 Jul 2013 02:59:17 +0200 To: cygwin@cygwin.com From: Katsumi Yamaoka Subject: Re: bzr problem Date: Fri, 12 Jul 2013 03:48:00 -0000 Message-ID: References: <51DF39CE.8050405@cornell.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Gnus/5.130008 (=?iso-2022-jp?B?GyRCPz8bKEI=?= Gnus v0.8) Emacs/24.3.50 (i686-pc-cygwin) X-SW-Source: 2013-07/txt/msg00237.txt.bz2 Please ignore my last reply (there's something wrong in MIME encoding). Ken Brown wrote: > On 7/11/2013 12:32 AM, Katsumi Yamaoka wrote: >> Hi, >> >> Recently /usr/bin/bzr doesn't work well. For the Emacs trunk, >> those two commands achieve the purpose even if issuing a warning: >> >> $ bzr update >> $ bzr commit -m "Bla bla" >> >> Usually a warning is like: >> 0 [main] python2.7 1264 child_info_fork::abort: address space needed >> by 'math.dll' (0x800000) is already occupied >> >> But it is sometimes: >> 1 [main] python2.7 5784 child_info_fork::abort: unable to remap >> _ARC4.dll to same address as parent (0xBE0000) - try running >> rebaseall >> >> Rebaseall doesn't help. Reinstalling bzr+python doesn't, either. > Did you run rebaseall *after* reinstalling bzr and python? Yes, I did. > Reinstalling undoes the rebasing. If that still doesn't help, try > looking at the output of 'rebase -is' to see if it shows DLL > collisions (marked with an asterisk). No asterisk appears. This is a superfluity, though: $ rebase -is| awk '{print $3}'| wc -l 2695 % rebase -is| awk '{print $3}'| sort -u| wc -l 2695 I also ran a small program[1] in the output to verify there is no overlap in the addresses. > You might also try moving /etc/rebase.db.i386 out of the way and the > running rebaseall again, so that it can start with a clean slate. I tried it but nothing changed. Thanks anyway. [1] (let (base size next) (goto-char (point-min)) (while (not (eobp)) (when (looking-at ".* base \\(0x\\([0-9a-f]+\\)\\) size \\(0x\\([0-9a-f]+\\)\\)") (setq base (string-to-number (match-string 2) 16) size (string-to-number (match-string 4) 16) next (+ base size)) (end-of-line) (insert "next " (number-to-string next)) (delete-region (goto-char (match-beginning 3)) (match-end 3)) (insert (number-to-string size)) (delete-region (goto-char (match-beginning 1)) (match-end 1)) (insert (number-to-string base))) (forward-line 1)) (sort-numeric-fields 3 (point-min) (point-max)) (goto-char (point-min)) (while (re-search-forward "next \\([.0-9]+\\)" nil t) (setq next (string-to-number (match-string 1))) (forward-line 1) (when (looking-at ".* base \\([.0-9]+\\)") (setq base (string-to-number (match-string 1))) (when (> next base) (error "Overlap!"))))) -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple