X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Received: by 10.224.66.70 with SMTP id m6mr18349066qai.6.1374192150645; Thu, 18 Jul 2013 17:02:30 -0700 (PDT) X-Received: by 10.49.62.3 with SMTP id u3mr645505qer.26.1374192150613; Thu, 18 Jul 2013 17:02:30 -0700 (PDT) Newsgroups: comp.os.msdos.djgpp Date: Thu, 18 Jul 2013 17:02:30 -0700 (PDT) In-Reply-To: <83ppuh11tt.fsf@gnu.org> Complaints-To: groups-abuse AT google DOT com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=65.13.115.246; posting-account=p5rsXQoAAAB8KPnVlgg9E_vlm2dvVhfO NNTP-Posting-Host: 65.13.115.246 References: <87bo61sadv DOT fsf AT uwakimon DOT sk DOT tsukuba DOT ac DOT jp> <33cb891e-c2bc-4298-aef8-f327936e3862 AT googlegroups DOT com> <83ppuh11tt DOT fsf AT gnu DOT org> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <2c8397ef-4399-4e53-b0be-a29887ec8254@googlegroups.com> Subject: Re: strange problem with compiling ffmpeg 2.0 - libavcodec.a was not created From: rugxulo AT gmail DOT com Injection-Date: Fri, 19 Jul 2013 00:02:30 +0000 Content-Type: text/plain; charset=ISO-8859-1 Bytes: 2704 Lines: 31 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Hi, I know I'm late, but .... On Wednesday, July 17, 2013 1:25:02 PM UTC-5, Eli Zaretskii wrote: > > Date: Wed, 17 Jul 2013 07:10:33 -0700 (PDT) > > From: RayeR > > > > ar(1) is failing. Find out what AR expands to and run it by hand; it > > > may give you a better message. > > > How can I display what command really make executes? > > Try make V=1 (Not sure if I totally understand this, feel free to correct me.) I thought GNU make had an opposite of "-s", but I don't see it now. Perhaps I was thinking of some other make. Probably, as I now see OpenWatcom's wmake has "-sn" (noisy mode: print all commands). Apparently POSIX doesn't specify this, so you'll have to either use some non-standard option (and I'm not sure "--trace" would help much, if at all) or manually remove '@' and ".SILENT" from any Makefiles. However, "make -n" would show you in advance what it wants to do. IIRC, there is also a POSIX shell option ("set -x") that shows every command executed, but ./configure usually turns that off, so you'll have to delete their doing that or manually set it later on. As for alternatives to CMD, I don't know how well one would work in this situation, never tried. Dunno if it overcomes the cmdline limit. However, if you're bored enough, feel free to try TCC/LE (formerly 4NT): http://en.wikipedia.org/wiki/Take_Command_(command_line_interpreter)