From 2d7c6485914781e44fd0ed855fef74063a433695 Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Mon, 13 Dec 2010 18:57:26 +0000 Subject: Check in a quick sed script to reduce Mac build logs. This strips out most of the command lines, making it look a little more like the Linux output. TEST=download mac build output; ./build/sanitize-mac-build-log.sed < build-output and verify it is shorter Review URL: http://codereview.chromium.org/5678006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69027 0039d316-1c4b-4281-b951-d872f2087c98 --- build/sanitize-mac-build-log.sed | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 build/sanitize-mac-build-log.sed (limited to 'build/sanitize-mac-build-log.sed') diff --git a/build/sanitize-mac-build-log.sed b/build/sanitize-mac-build-log.sed new file mode 100755 index 0000000..fbafbb2 --- /dev/null +++ b/build/sanitize-mac-build-log.sed @@ -0,0 +1,22 @@ +#!/bin/sed -f + +# Copyright (c) 2010 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# Use this sed script to reduce a Mac build log into something readable. + +# Drop uninformative lines. +/^distcc/d +/^Check dependencies/d +/^ setenv /d +/^ cd /d +/^make: nothing to be done/d + +# Xcode prints a short "compiling foobar.o" line followed by the lengthy +# full command line. These deletions drop the command line. +\|^ /Developer/usr/bin/|d + +# Shorten the "compiling foobar.o" line. +s|^Distributed-CompileC \(.*\) normal i386 c++ com.apple.compilers.gcc.4_2| CC \1| +s|^CompileC \(.*\) normal i386 c++ com.apple.compilers.gcc.4_2| CC \1| -- cgit v1.1