From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2191) id B62AA3858C55; Tue, 12 Apr 2022 19:45:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B62AA3858C55 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Carlos O'Donell To: glibc-cvs@sourceware.org Subject: [glibc/release/2.34/master] Fix elf/tst-audit25a with default bind now toolchains X-Act-Checkin: glibc X-Git-Author: Szabolcs Nagy X-Git-Refname: refs/heads/release/2.34/master X-Git-Oldrev: b118bce87a7c581cb2d6d7698eb582e45aed3481 X-Git-Newrev: 165e7ad459fbba2f89708fba04a55bb3981e884c Message-Id: <20220412194520.B62AA3858C55@sourceware.org> Date: Tue, 12 Apr 2022 19:45:20 +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, 12 Apr 2022 19:45:20 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=165e7ad459fbba2f89708fba04a55bb3981e884c commit 165e7ad459fbba2f89708fba04a55bb3981e884c Author: Szabolcs Nagy Date: Wed Feb 2 14:03:58 2022 +0000 Fix elf/tst-audit25a with default bind now toolchains This test relies on lazy binding for the executable so request that explicitly in case the toolchain defaults to bind now. (cherry picked from commit 80a08d0faa9b224019f895800c4d97de4e23e1aa) Diff: --- elf/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/elf/Makefile b/elf/Makefile index 8a524a7f6a..89021fb4dc 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -2089,6 +2089,7 @@ $(objpfx)tst-audit25a: $(objpfx)tst-audit25mod1.so \ $(objpfx)tst-audit25mod2.so \ $(objpfx)tst-audit25mod3.so \ $(objpfx)tst-audit25mod4.so +LDFLAGS-tst-audit25a = -Wl,-z,lazy $(objpfx)tst-audit25mod1.so: $(objpfx)tst-audit25mod3.so LDFLAGS-tst-audit25mod1.so = -Wl,-z,now $(objpfx)tst-audit25mod2.so: $(objpfx)tst-audit25mod4.so