From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yb1-xb30.google.com (mail-yb1-xb30.google.com [IPv6:2607:f8b0:4864:20::b30]) by sourceware.org (Postfix) with ESMTPS id BD7E13858C20 for ; Tue, 1 Mar 2022 22:38:40 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BD7E13858C20 Received: by mail-yb1-xb30.google.com with SMTP id e186so6112766ybc.7 for ; Tue, 01 Mar 2022 14:38:40 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=p8x6Qk1fXwLgUEokJVfxeKYVV0DF3dFL9xKdesJ4EF0=; b=aEnjkW5fRf1uYxEIk9V8ULi1UHGUXucetA8BMekw+ZEcxnB+qBKSsIXAIrhfhTUT/x rv5i7m3Ltk7bECSfwpcd+R648mkidVPfyUeS3sivs7zPPo+el1nGwciCYc846EkBWswQ Cmeq7Ni2+Ndje1vd6BAAQwGoLkL9gUZLLN5T6Yat73B1/wrEFXKYSRGs9WlXGRQMjEwt qWhJpQ5xQrRCzZ/TOMNbYGOXuYbBjGOUlUVGnEtVyIBleQdNC9ID3RL4szZ+YQf7BHEj SAq2PkgRziuJB0qMXl2NjcL2NZkBTV9kXcEfui3OBBCjcNU6CdLpyWlEqqSqDl7EjOsq xF/g== X-Gm-Message-State: AOAM530bdu3A7N1ncqq7fCKDs/vYfxokacHCOY2T6/u3nD5s5OPvD5bQ dIUk1bIrpDMMNtAVisSioVTIs1yUfgPjDC6CYAjtUA== X-Google-Smtp-Source: ABdhPJwhLCWvvOCKY0VrH4LfO8Lp9Nu/mDnEqtYZ1wB3iSERz4TpMRkBGl3j/qtBtTO0kFDJE67pWY0n6SWGqd6I+Ys= X-Received: by 2002:a25:ad07:0:b0:628:78df:ff24 with SMTP id y7-20020a25ad07000000b0062878dfff24mr5165271ybi.233.1646174320246; Tue, 01 Mar 2022 14:38:40 -0800 (PST) MIME-Version: 1.0 References: <20220301161706.185216-1-hjl.tools@gmail.com> <20220301161706.185216-6-hjl.tools@gmail.com> <20220301192127.4dsqp2veoac33itc@google.com> In-Reply-To: From: =?UTF-8?B?RsSBbmctcnXDrCBTw7JuZw==?= Date: Tue, 1 Mar 2022 14:38:28 -0800 Message-ID: Subject: Re: [PATCH v4 5/5] NEWS: Mention DT_RELR support To: "H.J. Lu" Cc: GNU C Library , Joseph Myers Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-24.1 required=5.0 tests=BAYES_00, DKIMWL_WL_MED, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, ENV_AND_HDR_SPF_MATCH, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE, USER_IN_DEF_DKIM_WL, USER_IN_DEF_SPF_WL autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Mar 2022 22:38:41 -0000 On Tue, Mar 1, 2022 at 2:37 PM H.J. Lu wrote: > > On Tue, Mar 1, 2022 at 11:21 AM Fangrui Song wrote: > > > > > > On 2022-03-01, H.J. Lu wrote: > > >--- > > > NEWS | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > >diff --git a/NEWS b/NEWS > > >index 626eeabf5d..2122c1e23e 100644 > > >--- a/NEWS > > >+++ b/NEWS > > >@@ -9,7 +9,7 @@ Version 2.36 > > > > > > Major new features: > > > > > >- [Add new features here] > > >+* Support DT_RELR relative relocation format. > > > > > > Deprecated and removed features, and other changes affecting compatibility: > > > > > >-- > > >2.35.1 > > > > Perhaps worth a bit more information like: > > > > The position-indepdent executable/shared object using DT_RELR needs to be linked with -z pack-relative-relocs. > > How about > > * Support DT_RELR relative relocation format generated with the linker > option, -z pack-relative-relocs. Looks good. > > --pack-dyn-relocs=relr is pretty common but doesn't work. So worth > > calling out the supported linker option. > > > > Reviewed-by: Fangrui Song > > > > -- > H.J.