1#! gawk -f 2#----------------------------------------------------------------------------- 3# Project: NW4R - Library - build - buildtools 4# File: vclogcvtr.awk 5# 6# Copyright 2005 Nintendo. All rights reserved. 7# 8# These coded instructions, statements, and computer programs contain 9# proprietary information of Nintendo of America Inc. and/or Nintendo 10# Company Ltd., and are protected by Federal copyright law. They may 11# not be disclosed to third parties or copied or duplicated in any form, 12# in whole or in part, without the prior written consent of Nintendo. 13# 14# $Revision: 1.3 $ 15#----------------------------------------------------------------------------- 16 17 18# ============================================================================ 19# 20# Extracts error and warning statements from the log output from VisualStudio.net 21# and outputs them to standard output. 22# 23 24/: Warning / { print $0 } 25/: warning / { print $0 } 26/: error / { print $0; error=1 } 27/: Error/ { print $0; error=1 } 28/Cannot open/ { print $0; error=1 } 29 30END { 31 if (error) 32 { 33 exit 1 34 } 35} 36