From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pg1-f171.google.com (mail-pg1-f171.google.com [209.85.215.171]) by sourceware.org (Postfix) with ESMTPS id D5FA9385800F for ; Tue, 23 Feb 2021 04:20:18 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org D5FA9385800F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=maskray.me Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=emacsray@gmail.com Received: by mail-pg1-f171.google.com with SMTP id o63so11591052pgo.6 for ; Mon, 22 Feb 2021 20:20:18 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=HIna6Am+PkPtEd6tG/uYL6B9UUSIq4PN3GuSy/GQDMo=; b=BOQN5ZIx1NOy+XURxDPFeeuOO0nzumNr8MUZVvAxb08UAQcKKpH8E7z7r8UE7ryfR/ NPqn95ApRIzr2cxSGwPFfcJAkqttEcGRMR2VsJhsWzX3yZIBmgpXdzHXDlh1ZQh2S/zt IcSqgWp39kY2VOW2GQQm5lcaFiMeoMqduXXX6XfQ+U80X/mtOy5zBZchvqdnUhiC7nCX Cc5G4dQCdfOG27rB28+ldu0V5HQQ9yYTQzBM88WibnbWhmuWGZoVyA5h+KmzqwlGCjVq LfF6LyOCCavGxQbBRVrND1qLF3ffWxQJP16t45EdXT8TCIQQVGuDJmJ+QCjUDoen9YnS V28g== X-Gm-Message-State: AOAM533YIsfzdVuKCIaj3wgIWu8hq9dIBiMLp++woISJzjF/7JznY8H/ BJhALPyCh1N1bXpVmrcyTYxZQcfwT2I= X-Google-Smtp-Source: ABdhPJycFGqQ6Cp20+9SkR/Y7xczLFbPUyzPe1fmH1OWkAXkpSCuvJZXow00W/5rXu/s1QyvJQBzIQ== X-Received: by 2002:a05:6a00:894:b029:1dc:2f68:5f0 with SMTP id q20-20020a056a000894b02901dc2f6805f0mr24490153pfj.23.1614054017810; Mon, 22 Feb 2021 20:20:17 -0800 (PST) Received: from localhost ([2601:647:4b01:ae80:c1b1:16e9:fd40:9522]) by smtp.gmail.com with ESMTPSA id j125sm9278072pfd.27.2021.02.22.20.20.16 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 22 Feb 2021 20:20:17 -0800 (PST) Date: Mon, 22 Feb 2021 20:20:16 -0800 From: Fangrui Song To: binutils@sourceware.org Subject: Re: [PATCH] nm: Add --quiet to suppress "no symbols" diagnostic Message-ID: <20210223042016.22jtbmooymngip7e@gmail.com> References: <20210212181626.688986-1-maskray@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20210212181626.688986-1-maskray@google.com> X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00, FREEMAIL_FORGED_FROMDOMAIN, FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, KAM_INFOUSMEBIZ, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Feb 2021 04:20:20 -0000 On 2021-02-12, Fangrui Song via Binutils wrote: > PR binutils/27408 > * readelf.c (quiet): New option flag. > (display_rel_file): If quiet is enabled, suppress "no symbols". > (enum long_option_values): New enum to hold long option value. > (options): Add quiet. > (main): Handle the new option. > * NEWS: Mention the new feature. > * docs/binutils.texi: Document the new feature. Ping