delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2019/10/19/12:52:34

X-Recipient: archive-cygwin AT delorie DOT com
DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id
:list-unsubscribe:list-subscribe:list-archive:list-post
:list-help:sender:reply-to:subject:to:references:from:message-id
:date:mime-version:in-reply-to:content-type
:content-transfer-encoding; q=dns; s=default; b=NaEA/CD++vljlpKi
xNOxpXS+aIz10kJOpWWMZCk+LvIx3H7QZFDNMA+QQW2E+F8bzn1byoboOj8osCPQ
FWulN3WxGXzrklau+lf4G6d1ZbiSjUKzZtr3N3SwsRUhGFHshB1kzSGPBG13P+0H
yyMkrAxWSwDshaNvKXPDQogJKWw=
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id
:list-unsubscribe:list-subscribe:list-archive:list-post
:list-help:sender:reply-to:subject:to:references:from:message-id
:date:mime-version:in-reply-to:content-type
:content-transfer-encoding; s=default; bh=s6N/zKTaJRleufjG9PesP9
X5XF8=; b=RuPBdbbi/sS4KgRN0CwQNXxF1mYWidHaicm3044Os7vq9+wSGK5eCu
bM41wUzXEJfgawYRTfj4ZJp3usglJDMaEnk+kGm7xuoFoR5V0lk7ZsnzWislgcr/
KerkaKfLf+RLmbc5Cdb2PBInAKDsEvmwkcx/M+Y5s+03r16GRvTOs=
Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner AT cygwin DOT com
Mail-Followup-To: cygwin AT cygwin DOT com
Delivered-To: mailing list cygwin AT cygwin DOT com
Authentication-Results: sourceware.org; auth=none
X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=installing
X-HELO: smtp-out-no.shaw.ca
Reply-To: Brian DOT Inglis AT SystematicSw DOT ab DOT ca
Subject: Re: bash (3312) C:\tools\cygwin\bin\bash.exe: *** fatal error - cygheap base mismatch detected - 0x180331408/0x18032D408.
To: cygwin AT cygwin DOT com
References: <CAFHpkQG43d0-PA-N+uF9qVqLmxmZyJs193o8kc5_jThFD+f8UQ AT mail DOT gmail DOT com> <0f9c1e44-9858-379b-22ff-789cc21191e2 AT SystematicSw DOT ab DOT ca> <CAFHpkQG=wHfY=65pRdYUmpo+RMiWLoAomMvQ2WGXYqMpjs_oLg AT mail DOT gmail DOT com> <CAFHpkQFQTC+QgFxqdOadq2AJqAdFseutH2RptORxvP5CoQ760g AT mail DOT gmail DOT com> <CALK-3m+_XECOGyqK2st30c=wJMu5ztCN9Fy1rY_OCk=xTMbKqw AT mail DOT gmail DOT com> <CAFHpkQF-eybPTW-wCSGVvkwhfsgbMtJFW7DRCWzoS244BcJgWw AT mail DOT gmail DOT com>
From: Brian Inglis <Brian DOT Inglis AT SystematicSw DOT ab DOT ca>
Openpgp: preference=signencrypt
Message-ID: <fafb01d6-d5c1-655a-e476-5ce14fcd4c9d@SystematicSw.ab.ca>
Date: Sat, 19 Oct 2019 10:51:37 -0600
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0
MIME-Version: 1.0
In-Reply-To: <CAFHpkQF-eybPTW-wCSGVvkwhfsgbMtJFW7DRCWzoS244BcJgWw@mail.gmail.com>
X-IsSubscribed: yes

On 2019-10-19 06:44, Ilʹja Šipicin wrote:
> sb, 19 okt. 2019 g. v 17:32, Biswapriyo Nath:
>> It seems to be issue in Travis CI. See this forum post:
>> https://travis-ci.community/t/cygwin-issue-cygheap-base-mismatch-detected/5359
>> If you are in hurry you can use Appveyor CI. I'm using it without any
>> issue. One has to just add `C:\cygwin64\bin` in PATH variable in YAML file.

> thank for another hint.
> I added 'get-childitem C:\cygwin64\bin'
> https://travis-ci.com/chipitsine/travis-cygwin/builds/132645696
> gci : Cannot find path 'C:\cygwin64\bin' because it does not exist.

He suggested adding the Cygwin bin to PATH: you have to find it; does not matter
where it exists, run:

	$ find /proc/cygdrive/?/ -name cygwin1.dll

or a global Windows search on My Computer/This PC/Cortana/etc.

> seems, it does not exist. no point to add it to PATH
> there's no hurry. I want to resolve it. My issue is the same as
> described on forum - builds used to work and accidentally stopped
> working (with the same error)

If you read the problem report, the issue is that the Travis provided
Git-for-Windows AKA Git-Bash AKA MSYS2/Cygwin Git/Bash/cygwin1.dll are installed
where its cygwin1.dll can be found via the path, but the shell child processes
are running using a different version of cygwin1.dll via the path, possibly
after installing new packages using a package manager like chocolatey or pacman.

Try running:

	$ which -a cygwin1.dll

and maybe:

	$ cygpath -alpw "$PATH"

to see what is active, and delete whichever installation is redundant.

-- 
Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada

This email may be disturbing to some readers as it contains
too much technical detail. Reader discretion is advised.

--
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

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019