1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-10 05:03:06 +03:00

debug: Reformat Makefile.

Fix list terminator whitspace.
Sort using scripts/sort-makefile-lines.py.

No code generation changes observed in binary artifacts.
No regressions on x86_64 and i686.
This commit is contained in:
Carlos O'Donell
2023-05-11 06:46:27 -04:00
parent aa492359f1
commit e475bc2507

View File

@@ -29,6 +29,7 @@ headers := execinfo.h
# login/Makefile instead. If that subdir is omitted from the # login/Makefile instead. If that subdir is omitted from the
# build, its _FORTIFY_SOURCE support will be too. # build, its _FORTIFY_SOURCE support will be too.
routines = \ routines = \
$(static-only-routines) \
____longjmp_chk \ ____longjmp_chk \
asprintf_chk \ asprintf_chk \
backtrace \ backtrace \
@@ -113,7 +114,6 @@ routines = \
wmempcpy_chk \ wmempcpy_chk \
wmemset_chk \ wmemset_chk \
wprintf_chk \ wprintf_chk \
$(static-only-routines) \
# routines # routines
static-only-routines := stack_chk_fail_local static-only-routines := stack_chk_fail_local
@@ -267,23 +267,25 @@ CFLAGS-tst-ssp-1.c += -fstack-protector-all
CFLAGS-tst-sprintf-fortify-unchecked.c = \ CFLAGS-tst-sprintf-fortify-unchecked.c = \
-fno-builtin-vsprintf -fno-builtin-__vsprintf_chk -fno-builtin-vsprintf -fno-builtin-__vsprintf_chk
tests = backtrace-tst \ tests = \
tst-longjmp_chk \ $(tests-all-chk) \
test-strcpy_chk \ backtrace-tst \
test-stpcpy_chk \ test-stpcpy_chk \
tst-longjmp_chk2 \ test-strcpy_chk \
tst-backtrace2 \ tst-backtrace2 \
tst-backtrace3 \ tst-backtrace3 \
tst-backtrace4 \ tst-backtrace4 \
tst-backtrace5 \ tst-backtrace5 \
tst-backtrace6 \ tst-backtrace6 \
tst-realpath-chk \ tst-longjmp_chk \
tst-sprintf-fortify-unchecked \ tst-longjmp_chk2 \
$(tests-all-chk) tst-realpath-chk \
tst-sprintf-fortify-unchecked \
# tests
tests-time64 += \ tests-time64 += \
$(tests-all-time64-chk) \ $(tests-all-time64-chk) \
# tests-time64 # tests-time64
ifeq ($(have-ssp),yes) ifeq ($(have-ssp),yes)
tests += tst-ssp-1 tests += tst-ssp-1