diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2025-02-04 10:08:43 +0100 |
---|---|---|
committer | Lorenzo Salvadore <salvadore@FreeBSD.org> | 2025-02-10 19:18:05 +0100 |
commit | 6f5f51aaee2e3d4b217eebeccc64850b924e414a (patch) | |
tree | e7346c0a005ea08cac95dc8d0868490bd0832d65 /lang/gcc12/files/patch-libgcc-config.host | |
parent | devel/sasm: Update 3.14.0 => 3.15.0 (diff) |
lang/gcc12: Fix segfaults for static binaries
Fix segmentation faults caused by -static flag into compiled binaries.
Email thread: https://lists.freebsd.org/archives/freebsd-hackers/2025-January/004236.html
Upstream bug report: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118685
PR: 284441
Reported by: kargl
Diffstat (limited to 'lang/gcc12/files/patch-libgcc-config.host')
-rw-r--r-- | lang/gcc12/files/patch-libgcc-config.host | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/gcc12/files/patch-libgcc-config.host b/lang/gcc12/files/patch-libgcc-config.host new file mode 100644 index 000000000000..266694676d17 --- /dev/null +++ b/lang/gcc12/files/patch-libgcc-config.host @@ -0,0 +1,11 @@ +--- libgcc/config.host.orig 2025-01-30 12:31:26.479569000 -0800 ++++ libgcc/config.host 2025-01-30 12:32:03.732682000 -0800 +@@ -286,7 +286,7 @@ + # machine-specific sections may refine and add to this + # configuration. + tmake_file="$tmake_file t-freebsd t-crtstuff-pic t-libgcc-pic t-eh-dw2-dip t-slibgcc t-slibgcc-gld t-slibgcc-elf-ver" +- extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o" ++ extra_parts="crtbegin.o crtend.o crtbeginS.o crtbeginT.o crtendS.o" + case ${target_thread_file} in + posix) + tmake_file="${tmake_file} t-freebsd-thread" |