From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x143.google.com (mail-il1-x143.google.com [IPv6:2607:f8b0:4864:20::143]) by sourceware.org (Postfix) with ESMTPS id 9193E395CC4D for ; Sat, 16 May 2020 16:38:47 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 9193E395CC4D Received: by mail-il1-x143.google.com with SMTP id j3so5613011ilk.11 for ; Sat, 16 May 2020 09:38:47 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=LREQ91YlaIC9oD7QrTGx7DmTFB8J2GA0l/ykyI+539Y=; b=BWjP9jaD3DlZFuU4sOjtr+5+7AcqOoVivoQjXO3oEpIXNJocI331Vk57BsIU6D8gbD nlOxPovjp8O89fNpWNy81ibPxFm2OI2C5hytpAEUeZpYV+kq8FAU4HBoDfy5dRfLSTPc CBjE8ujkXoC3K3ltzjoa55yTazjHZsK3EF/+h8s3h/VPw9Di9hST1Kq0yg+TP1raS2WH /fgZdfkJ8cQNakZxs2hFfK50zDkiYTovbr40yyCfzJWHLEeykL9glDFhdll1+EGuWnXl BGmHcEgpg4JAMhxEwydbS71EwR2Cg9Kok5iSIJBJ2HxZqbDRBwmIKDvnnDfZVB8pdaeX Pc+w== X-Gm-Message-State: AOAM532i62B1SjdcKlUnzblEunzQOw4SID0pDMEVWftWxRrfsT0ijtJw KOZoZMZdqNSURa5gRT0mv57cmezHBpIz5Ek/ac2pNw== X-Google-Smtp-Source: ABdhPJzo9sq9cWqTmcAAkxP0Cmdynr9upaIkzbjroV2PUtRi93YzjWK2NHX5t2htQI0ivmM/Tb9k7AKqwfD5mh1Pm4g= X-Received: by 2002:a92:afc6:: with SMTP id v67mr8992366ill.292.1589647126855; Sat, 16 May 2020 09:38:46 -0700 (PDT) MIME-Version: 1.0 References: <20200428215243.236312-1-hjl.tools@gmail.com> <20200428215243.236312-3-hjl.tools@gmail.com> In-Reply-To: <20200428215243.236312-3-hjl.tools@gmail.com> From: "H.J. Lu" Date: Sat, 16 May 2020 09:38:10 -0700 Message-ID: Subject: PING: [PATCH 2/3] rtld: Get architecture specific initializer in rtld_global To: GNU C Library , "Carlos O'Donell" Cc: Florian Weimer Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-9.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) 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: Sat, 16 May 2020 16:38:49 -0000 On Tue, Apr 28, 2020 at 2:52 PM H.J. Lu wrote: > > Include to get architecture specific initializer in > rtld_global. > --- > elf/rtld.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/elf/rtld.c b/elf/rtld.c > index 0016db86a7..44b9fb0b3c 100644 > --- a/elf/rtld.c > +++ b/elf/rtld.c > @@ -315,6 +315,8 @@ rtld_hidden_def (_dl_starting_up) > (except those which cannot be added for some reason). */ > struct rtld_global _rtld_global = > { > + /* Get architecture specific initializer. */ > +#include > /* Generally the default presumption without further information is an > * executable stack but this is not true for all platforms. */ > ._dl_stack_flags = DEFAULT_STACK_PERMS, > -- > 2.25.4 > PING. -- H.J.