X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Received: by 2002:a05:6214:27c7:: with SMTP id ge7mr15900218qvb.44.1635758462819; Mon, 01 Nov 2021 02:21:02 -0700 (PDT) X-Received: by 2002:a5b:d50:: with SMTP id f16mr19341450ybr.350.1635758462656; Mon, 01 Nov 2021 02:21:02 -0700 (PDT) Newsgroups: comp.os.msdos.djgpp Date: Mon, 1 Nov 2021 02:21:02 -0700 (PDT) Injection-Info: google-groups.googlegroups.com; posting-host=81.217.199.198; posting-account=RR3OeQoAAACYgn23XqTski3oGOFlt-O1 NNTP-Posting-Host: 81.217.199.198 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: DJGPP build of gcc-10.3.0 and make 4.3 incompatibility From: "Stefan Ring (stefanrin AT gmail DOT com) [via djgpp AT delorie DOT com]" Injection-Date: Mon, 01 Nov 2021 09:21:02 +0000 Content-Type: text/plain; charset="UTF-8" Bytes: 1905 Lines: 13 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id 1A19j2r5024739 Reply-To: djgpp AT delorie DOT com While trying to recreate the DJGPP gcc binaries, by following the excellent instructions in readme.DJGPP, I stumbled across this problem that caused me a lot of grief. I used Windows XP for building and even installed Vista as a possible remedy, but to no avail. The same thing happened there. The last line in libgcc/Makefile.in does an include of *.dep, but somehow in make 4.3 the expansion of this wildcard expression gets truncated somewhere in the middle, and then it complains about not being able to find the file whose name got truncated. I patched around this by splitting it up into multiple chunks of wildcard matches on multiple lines, but this got me further only by a tiny amount. The next problem was that during an "exit 0" in the configuration stage, make would say "memory fouled" and abort. After switching to make 4.1r2, the build worked beautifully.