mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
And add extra checks to enable for binutils 2.45 and if the architecture explicitly enables it. When SFrame is disabled, all the related code is also not enabled for backtrace() and _dl_find_object(), so SFrame backtracking is not used even if the binary has the SFrame segment. This patch also adds some other related fixes: * Fixed an issue with AC_CHECK_PROG_VER, where the READELF_SFRAME usage prevented specifying a different readelf through READELF environment variable at configure time. * Add an extra arch-specific internal definition, libc_cv_support_sframe, to disable --enable-sframe on architectures that have binutils but not glibc support (s390x). * Renamed the tests without the .sframe segment and move the tst-backtrace1 from pthread to debug. * Use the built compiler strip to remove the .sframe segment, instead of the system one (which might not support SFrame). Checked on x86_64-linux-gnu and aarch64-linux-gnu. Reviewed-by: Sam James <sam@gentoo.org>
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
# Copyright (C) 1992-2025 Free Software Foundation, Inc.
|
|
# This file is part of the GNU C Library.
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with the GNU C Library; if not, see
|
|
# <https://www.gnu.org/licenses/>.
|
|
|
|
ifeq ($(subdir),string)
|
|
sysdep_routines += tls-internal
|
|
CFLAGS-wordcopy.c += -Wno-uninitialized
|
|
endif
|
|
|
|
ifeq ($(subdir),elf)
|
|
ifeq ($(enable-gsframe),yes)
|
|
sysdep_routines += sframe-read sframe
|
|
endif
|
|
ifeq (yes:yes,$(build-shared):$(unwind-find-fde))
|
|
# This is needed to support g++ v2 and v3.
|
|
sysdep_routines += framestate unwind-pe
|
|
shared-only-routines += framestate unwind-pe
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(subdir),malloc)
|
|
sysdep_malloc_debug_routines += malloc-hugepages
|
|
endif
|
|
|
|
ifeq ($(subdir),misc)
|
|
sysdep_routines += malloc-hugepages
|
|
endif
|