]> sourceware.org Git - glibc.git/commit
Force DT_RPATH for --enable-hardcoded-path-in-tests
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 10 May 2024 03:07:01 +0000 (20:07 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 10 May 2024 11:59:46 +0000 (04:59 -0700)
commit97bb89668d7171164975f3dc895e38343a2f3a95
treec4ba0c8e7803aac66cc1b44234421542fb32bd39
parent71149c2a2e85a8233631cc816030d449f021bb2a
Force DT_RPATH for --enable-hardcoded-path-in-tests

On Fedora 40/x86-64, linker enables --enable-new-dtags by default which
generates DT_RUNPATH instead of DT_RPATH.  Unlike DT_RPATH, DT_RUNPATH
only applies to DT_NEEDED entries in the executable and doesn't applies
to DT_NEEDED entries in shared libraries which are loaded via DT_NEEDED
entries in the executable.  Some glibc tests have libstdc++.so.6 in
DT_NEEDED, which has libm.so.6 in DT_NEEDED.  When DT_RUNPATH is generated,
/lib64/libm.so.6 is loaded for such tests.  If the newly built glibc is
older than glibc 2.36, these tests fail with

assert/tst-assert-c++: /export/build/gnu/tools-build/glibc-gitlab-release/build-x86_64-linux/libc.so.6: version `GLIBC_2.36' not found (required by /lib64/libm.so.6)
assert/tst-assert-c++: /export/build/gnu/tools-build/glibc-gitlab-release/build-x86_64-linux/libc.so.6: version `GLIBC_ABI_DT_RELR' not found (required by /lib64/libm.so.6)

Pass -Wl,--disable-new-dtags to linker when building glibc tests with
--enable-hardcoded-path-in-tests.  This fixes BZ #31719.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
(cherry picked from commit 2dcaf70643710e22f92a351e36e3cff8b48c60dc)
Makeconfig
This page took 0.043136 seconds and 5 git commands to generate.