From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_MSPIKE_H2 autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 3721 invoked from network); 8 Apr 2023 00:51:45 -0000 Received: from second.openwall.net (193.110.157.125) by inbox.vuxu.org with ESMTPUTF8; 8 Apr 2023 00:51:45 -0000 Received: (qmail 26582 invoked by uid 550); 8 Apr 2023 00:51:43 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 26549 invoked from network); 8 Apr 2023 00:51:42 -0000 Date: Fri, 7 Apr 2023 20:51:30 -0400 From: Rich Felker To: Chen Wang Cc: musl Message-ID: <20230408005129.GI4163@brightrain.aerifal.cx> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: [musl] why musl doesn't support "LD_SHOW_AUXV"? On Fri, Mar 31, 2023 at 04:44:17PM +0800, Chen Wang wrote: > Hello, > > as per the title of this message, I find LD_SHOW_AUXV doesn't work > for musl and I checked the latest 1.2.3 and don't find code about > this. > Thanks in adv. In general we do not have LD_* except for (as documented) LD_LIBRARY_PATH and LD_PRELOAD, and aim to maximally avoid having/introducing environment variables that alter program behavior behind the application's back. Rich