From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pl1-x62c.google.com (mail-pl1-x62c.google.com [IPv6:2607:f8b0:4864:20::62c]) by sourceware.org (Postfix) with ESMTPS id 864123852211 for ; Mon, 21 Nov 2022 21:52:46 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 864123852211 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-pl1-x62c.google.com with SMTP id d20so11785132plr.10 for ; Mon, 21 Nov 2022 13:52:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=in-reply-to:content-disposition:mime-version:references:message-id :subject:cc:to:from:date:from:to:cc:subject:date:message-id:reply-to; bh=4xfGUcud9s76CYbRKNdGc8z2WJKI8E88lqHEoBIBmRc=; b=JNgsg6PA3DUlTcmrWsLayrx+03CqAFImF1VqSuELi+YYgzVKwq8YY558Z9T40zdt+K nmYRpRBjWfNuhtFpdb+XXJU6Oo8ZriJL1xWJ0CArxK6UNReWbp4NiPcDMnQgVDKUEA6M 8Q9C3j5ObPNMmpWB5Q0EDrbXxEExXBi0c8MU/Ll/TbRQUnX1lMUx6QTmqBWdOHvO9rqi qnDBUqS8i9g70pP3qAwQ611IbtaaAPbzrejaQEdGZcq5XxADw0xDgE9UQcxObHMuBJ62 1QfOLa+91gJw7vH8UvkzbALC8tXaDuyF4NglyUrNqG0eyD8azXkLb4Apt+6yKDJSOr6A Ctsw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=in-reply-to:content-disposition:mime-version:references:message-id :subject:cc:to:from:date:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=4xfGUcud9s76CYbRKNdGc8z2WJKI8E88lqHEoBIBmRc=; b=J/+3V0oTiATZguA2YQiZCCRkB84lJVpzS3gSu//6bq0sRGUJfQ5FVIsUw7mkB+risP Cqkim3BL+sOYusnN3pJZym2IqFNBRaE2vu4M4tHzD0EwNsErApzdwKaQwzDho0aPds7e +LwnpEARRVQ/XbB4NS0+6ZuhbKRGGb/8JtZXSqxQJbGbQgZeh19xq/hMCNNLQucVCSUm MWYM2AWXl02PSXKZw8Hd+IZeydgjg5hF1OATUV4KRlcX4Fqlb2OjY3M2C6Lv9UUgxlTj zotoaHUJ95B80mPd9FFML0yYpmetyLJsNkp5s9N4OeBh0QzggzquRBZ4qDoGjJ7cIPOY ByhQ== X-Gm-Message-State: ANoB5plQxd8mE1Yw6bxlxOMXTW0GDdrdZ4vPMh0/NupJrgl3nPkw2viV 7mX323DH9WxyZT+0bYo9ChzBNxg9tsg= X-Google-Smtp-Source: AA0mqf6w96u35qS5bUEKVP7sn0B3YPs6iNq1dClC2cpECoNsLcNeazoYYdMuzhs9Z88QD9smvWvftA== X-Received: by 2002:a17:903:2798:b0:186:61a7:aea1 with SMTP id jw24-20020a170903279800b0018661a7aea1mr13679020plb.145.1669067565665; Mon, 21 Nov 2022 13:52:45 -0800 (PST) Received: from squeak.grove.modra.org (158.106.96.58.static.exetel.com.au. [58.96.106.158]) by smtp.gmail.com with ESMTPSA id 98-20020a17090a0feb00b002135fdfa995sm10887165pjz.25.2022.11.21.13.52.44 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 21 Nov 2022 13:52:45 -0800 (PST) Received: by squeak.grove.modra.org (Postfix, from userid 1000) id 0B5171142E46; Tue, 22 Nov 2022 08:22:42 +1030 (ACDT) Date: Tue, 22 Nov 2022 08:22:42 +1030 From: Alan Modra To: Brett Werling Cc: binutils@sourceware.org Subject: Re: [PATCH] readelf: use fseeko64 or fseeko if possible Message-ID: References: <20221114150348.112815-1-bwerl.dev@gmail.com> <20221117143419.19571-1-bwerl.dev@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221117143419.19571-1-bwerl.dev@gmail.com> X-Spam-Status: No, score=-3030.1 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Thu, Nov 17, 2022 at 08:34:19AM -0600, Brett Werling via Binutils wrote: > Changes readelf to make use first of fseeko64 and then fseeko, > depending on which of those is available. If neither is available, > reverts to the previous behavior of using fseek. Committed, thanks. -- Alan Modra Australia Development Lab, IBM