X-Recipient: archive-cygwin@delorie.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:cc:from
	:message-id:date:mime-version:in-reply-to:content-type
	:content-transfer-encoding; q=dns; s=default; b=Y646UvAW6eMWKfoU
	x1XmABnwa7xCna29F3ux3XwB04R8a98PjLmisbM+YYOBmz+iCNoeo0hgFkpQ+/Vy
	hGYjKGKgIig7c5MmAdk71NWCgnuLDdSsdj5dCzCCANok0p/MfwAzUbV1Z8BZgxo/
	7NsZHHBYk1g01a+EEX81Avg7Jaw=
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:cc:from
	:message-id:date:mime-version:in-reply-to:content-type
	:content-transfer-encoding; s=default; bh=Xb5oUpq12nd4wXWy1bEmMW
	Reppo=; b=CPDE7VkVtII6aeWszV6sy7kqMGOO4ga32u3kpPJ8EELVSXyxV2gMPq
	e6o80HZwk8sXRsTQuGrOEq2OF7wIQPaQKiJMCV7mV3jyIBxa3U31mwN96HIsHnR/
	mpxcJuSb8jTFs2Tui8SYeBEbn9ucTp6OQ4B0H9HxuUkolhpY3P4Hg=
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Authentication-Results: sourceware.org; auth=none
X-Spam-SWARE-Status: No, score=-3.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 spammy=rolling, mistaken, HX-Languages-Length:1528
X-HELO: smtp-out-so.shaw.ca
Reply-To: Brian.Inglis@SystematicSw.ab.ca
Subject: Re: Bug reporting
To: cygwin@cygwin.com
References: <CADPbhsC5wURgi_COOpNfLhw4NPQRdUa7rAbM01rnym0YZYB=bA@mail.gmail.com>
Cc: pasunuti prashanth <prashanthp436@gmail.com>
From: Brian Inglis <Brian.Inglis@SystematicSw.ab.ca>
Openpgp: preference=signencrypt
Message-ID: <bd58fb96-8187-743e-1a1b-e2d41bdb0ac5@SystematicSw.ab.ca>
Date: Wed, 20 Nov 2019 07:47:06 -0700
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.1
MIME-Version: 1.0
In-Reply-To: <CADPbhsC5wURgi_COOpNfLhw4NPQRdUa7rAbM01rnym0YZYB=bA@mail.gmail.com>
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
X-IsSubscribed: yes

On 2019-11-19 21:59, pasunuti prashanth wrote:
> We are facing a bug problem during compilation.
> 1. "makedepend: error: out of space: increase MAXFILES"
> 2. make[1]: *** [Makefile:327: dep] error 1
> 
> Request to address this problem.

> Problem reports:       http://cygwin.com/problems.html

This is a totally volunteer supported rolling package release system, so you
should update to the current release of all packages, and provide the info
requested, at the above link, on what versions of Windows and Cygwin you are
running, on what files, and enough of your code and data **attached** as
**text** files to reproduce the problem, either as programs or scripts.

Issues with makedepend are often the result of mistaken approaches to its use,
or misuse; MAXFILES was increased to 2K in 2012 and has been sufficient since
then; makedepend expects to be run once in each directory of a project, with
less than 2K source and included files referenced.

Most uses of makedepend have been replaced by compiler options to do so e.g

	$ clang|gcc -M -MD -MF f -MG -MM -MMD -MP -MQ t -MT t

invoked by makefile depend rules which reference the .d files generated by the
above options.

Projects using autotools may require autoreconf to be run to update
configurations to use the current tools, possibly using -f, -i, -m option flags.

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

