From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1039) id 6C00F3851C12; Tue, 28 Apr 2020 17:57:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6C00F3851C12 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: H.J. Lu To: glibc-cvs@sourceware.org Subject: [glibc/hjl/cet/master] rtld: Get architecture specific initializer in rtld_global X-Act-Checkin: glibc X-Git-Author: H.J. Lu X-Git-Refname: refs/heads/hjl/cet/master X-Git-Oldrev: 97547c772180b927531ce073dd55f2bf646a133d X-Git-Newrev: f9a69d5fd4c9a3fd4435b6e58a818e3ebe198b00 Message-Id: <20200428175750.6C00F3851C12@sourceware.org> Date: Tue, 28 Apr 2020 17:57:50 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Apr 2020 17:57:50 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=f9a69d5fd4c9a3fd4435b6e58a818e3ebe198b00 commit f9a69d5fd4c9a3fd4435b6e58a818e3ebe198b00 Author: H.J. Lu Date: Tue Apr 28 10:05:25 2020 -0700 rtld: Get architecture specific initializer in rtld_global Include to get architecture specific initializer in rtld_global. Diff: --- 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,