summaryrefslogtreecommitdiffstats
path: root/build/sanitize-mac-build-log.sed
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-13 18:57:26 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-13 18:57:26 +0000
commit2d7c6485914781e44fd0ed855fef74063a433695 (patch)
tree3005e10ca022e2eb2bd3f51cc7b8357f6900e7f8 /build/sanitize-mac-build-log.sed
parent68766fcb85c5aeb62b6937633111e70f814fc1b0 (diff)
downloadchromium_src-2d7c6485914781e44fd0ed855fef74063a433695.zip
chromium_src-2d7c6485914781e44fd0ed855fef74063a433695.tar.gz
chromium_src-2d7c6485914781e44fd0ed855fef74063a433695.tar.bz2
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
Diffstat (limited to 'build/sanitize-mac-build-log.sed')
-rwxr-xr-xbuild/sanitize-mac-build-log.sed22
1 files changed, 22 insertions, 0 deletions
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|