From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11885 invoked by alias); 16 Aug 2007 20:28:01 -0000 Received: (qmail 11852 invoked by uid 22791); 16 Aug 2007 20:28:00 -0000 X-Spam-Check-By: sourceware.org Received: from sunsite.ms.mff.cuni.cz (HELO sunsite.mff.cuni.cz) (195.113.15.26) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 16 Aug 2007 20:27:51 +0000 Received: from sunsite.mff.cuni.cz (localhost.localdomain [127.0.0.1]) by sunsite.mff.cuni.cz (8.13.8/8.13.8) with ESMTP id l7GKXpnx031949; Thu, 16 Aug 2007 22:33:51 +0200 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.13.8/8.13.8/Submit) id l7GKXpfC031948; Thu, 16 Aug 2007 22:33:51 +0200 Date: Thu, 16 Aug 2007 20:28:00 -0000 From: Jakub Jelinek To: Roland McGrath Cc: Ulrich Drepper , Glibc hackers Subject: Re: [PATCH] Fix checking of ld.so undefined symbols on sparc64 Message-ID: <20070816203351.GD2279@sunsite.mff.cuni.cz> Reply-To: Jakub Jelinek References: <20070816201927.GC2279@sunsite.mff.cuni.cz> <20070816202303.9AEB04D0461@magilla.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070816202303.9AEB04D0461@magilla.localdomain> User-Agent: Mutt/1.4.2.2i Mailing-List: contact libc-hacker-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sourceware.org X-SW-Source: 2007-08/txt/msg00028.txt.bz2 On Thu, Aug 16, 2007 at 01:23:03PM -0700, Roland McGrath wrote: > Might as well just use { print; exit 2 } in the awk. Well, that would print just one line, we want to see all undefined symbols, don't we? But awk '($7 ~ /^UND(|EF)$/ && $1 != "0:" && $4 != "REGISTER") { print; p=1 } END { exit p != 0 }' could work... Jakub