From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2191) id B32283876053; Tue, 29 Mar 2022 21:05:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B32283876053 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/codonell/ld-audit] Fix elf/tst-audit25a with default bind now toolchains X-Act-Checkin: glibc X-Git-Author: Szabolcs Nagy X-Git-Refname: refs/heads/codonell/ld-audit X-Git-Oldrev: b7f913c052ec1349a3f27e2302cc81380f67a218 X-Git-Newrev: 529cfa039a3d287cc94c9efc61afac406cf70e4e Message-Id: <20220329210509.B32283876053@sourceware.org> Date: Tue, 29 Mar 2022 21:05:09 +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, 29 Mar 2022 21:05:09 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=529cfa039a3d287cc94c9efc61afac406cf70e4e commit 529cfa039a3d287cc94c9efc61afac406cf70e4e 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