From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/663 Path: news.gmane.org!not-for-mail From: Isaac Dunham Newsgroups: gmane.linux.lib.musl.general Subject: Re: [PATCH] makefile: Make default output compact and similar to Linux kernel. Date: Fri, 16 Mar 2012 11:00:23 -0700 Message-ID: <20120316110023.bc4724d8.idunham@lavabit.com> References: <1331799923-14402-1-git-send-email-gf@unixsol.org> <20120315164209.GE184@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1331920841 19382 80.91.229.3 (16 Mar 2012 18:00:41 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 16 Mar 2012 18:00:41 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-664-gllmg-musl=m.gmane.org@lists.openwall.com Fri Mar 16 19:00:40 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 1S8bS9-0008Le-Mp for gllmg-musl@plane.gmane.org; Fri, 16 Mar 2012 19:00:37 +0100 Original-Received: (qmail 15441 invoked by uid 550); 16 Mar 2012 18:00:37 -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 15432 invoked from network); 16 Mar 2012 18:00:37 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=lavabit; d=lavabit.com; b=KrKhxSrlqT5DO63fm4ZeUPthPVoSsQnw5XFnPKdprz9myEIgtLOjs8jmk/YuF8dTAoWmk0XJlVOVyM+ZhYGk7NTQh2yp4FIFEFfc4F4weGo5bM2EZJmZTYaUWZLn6VYJ4RbT3HKasT4ZQTNz0iUGmZGahPEfL63ZboXG6sQTCSA=; h=Date:From:To:Subject:Message-Id:In-Reply-To:References:X-Mailer:Mime-Version:Content-Type:Content-Transfer-Encoding; In-Reply-To: <20120315164209.GE184@brightrain.aerifal.cx> X-Mailer: Sylpheed 3.0.2 (GTK+ 2.20.1; i486-pc-linux-gnu) Xref: news.gmane.org gmane.linux.lib.musl.general:663 Archived-At: On Thu, 15 Mar 2012 12:42:09 -0400 Rich Felker wrote: > 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: > > CC src/unistd/write.c > > LD lib/libc.so > > BUILD tools/musl-gcc > > INSTALL /usr/local/musl/lib/libc.a .. > > Any opinions on this? I really dislike this kind of output, but if > there's a demand for it I'll consider it. > On the plus side, it makes spotting warnings/errors easier. It does look a little cleaner, as well. On the down side -it complicates makefiles -it hides what's happening (and often the flags gcc gets are the biggest problem) -you can review the errors in full context later with make 2>&1 | tee errors.log - So my vote is that it isn't worth the effort. -- Isaac Dunham