From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/658 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: [PATCH] makefile: Make default output compact and similar to Linux kernel. Date: Thu, 15 Mar 2012 12:42:09 -0400 Message-ID: <20120315164209.GE184@brightrain.aerifal.cx> References: <1331799923-14402-1-git-send-email-gf@unixsol.org> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1331829729 29592 80.91.229.3 (15 Mar 2012 16:42:09 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 15 Mar 2012 16:42:09 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-659-gllmg-musl=m.gmane.org@lists.openwall.com Thu Mar 15 17:42:09 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1S8DkY-0001VH-H9 for gllmg-musl@plane.gmane.org; Thu, 15 Mar 2012 17:42:02 +0100 Original-Received: (qmail 23910 invoked by uid 550); 15 Mar 2012 16:42:02 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 23897 invoked from network); 15 Mar 2012 16:42:01 -0000 Content-Disposition: inline In-Reply-To: <1331799923-14402-1-git-send-email-gf@unixsol.org> User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:658 Archived-At: On Thu, Mar 15, 2012 at 10:25:23AM +0200, Georgi Chorbadzhiyski wrote: > This patch changes default make output to be similar to Linux kernel. > An example output looks like this: > > ASM crt/i386/crt1.s > COPY crt/crt1.o lib/crt1.o > MKBITS i386 > MKTYPES include/bits/alltypes.h.sh > CC src/aio/aio_cancel.c > CC src/unistd/write.c > LD lib/libc.so > BUILD tools/musl-gcc > INSTALL /usr/local/musl/lib/libc.a > INSTALL /usr/local/bin/musl-gcc > > If you want to see the executed commands use make V=1 or export V=1 > before running make. Any opinions on this? I really dislike this kind of output, but if there's a demand for it I'll consider it. Rich