7e7241f620
Upstream commit: 808a84a8b81468b517a4d721fdc62069cb8c211f - Fix underallocation of abort_msg_s struct (CVE-2025-0395) - x86/string: Fixup alignment of main loop in str{n}cmp-evex [BZ #32212] - x86: Improve large memset perf with non-temporal stores [RHEL-29312] - x86: Avoid integer truncation with large cache sizes (bug 32470) - math: Exclude internal math symbols for tests [BZ #32414] - malloc: add indirection for malloc(-like) functions in tests [BZ #32366] - Pass -nostdlib -nostartfiles together with -r [BZ #31753] - nptl: initialize cpu_id_start prior to rseq registration - nptl: initialize rseq area prior to registration
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
commit aa8768999e94fcee1695feb766c69dd8a93b706b
|
|
Author: H.J. Lu <hjl.tools@gmail.com>
|
|
Date: Fri May 17 20:00:38 2024 -0700
|
|
|
|
Pass -nostdlib -nostartfiles together with -r [BZ #31753]
|
|
|
|
Since -r in GCC 6/7/8 doesn't imply -nostdlib -nostartfiles, update the
|
|
link-static-libc.out rule to also pass -nostdlib -nostartfiles. This
|
|
fixes BZ #31753.
|
|
|
|
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
|
|
Reviewed-by: Florian Weimer <fweimer@redhat.com>
|
|
(cherry picked from commit 2be3352f0b1ebaa39596393fffe1062275186669)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 37bf70aa4ad4403f..ae9bc09327dd2d5b 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -581,7 +581,8 @@ $(objpfx)lint-makefiles.out: scripts/lint-makefiles.sh
|
|
# definitions of any symbols.
|
|
tests-special += $(objpfx)link-static-libc.out
|
|
$(objpfx)link-static-libc.out:
|
|
- $(LINK.o) $(whole-archive) -r $(objpfx)libc.a -o /dev/null > $@ 2>&1; \
|
|
+ $(LINK.o) $(whole-archive) -nostdlib -nostartfiles -r \
|
|
+ $(objpfx)libc.a -o /dev/null > $@ 2>&1; \
|
|
$(evaluate-test)
|
|
|
|
# Print test summary for tests in $1 .sum file;
|