public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/gcc] rhel-f41-base: aarch64: fix cc1plus segfault using pch (#1058991), PR pch/60010
@ 2026-06-29 12:26 Kyle McMartin
0 siblings, 0 replies; only message in thread
From: Kyle McMartin @ 2026-06-29 12:26 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 57702a0fa810f1c11dec839f5892eea9d9accd82
Author : Kyle McMartin <kyle@mcmartin.ca>
Date : 2014-02-01T02:48:55-05:00
Stats : +20/-1 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/57702a0fa810f1c11dec839f5892eea9d9accd82?branch=rhel-f41-base
Log:
aarch64: fix cc1plus segfault using pch (#1058991), PR pch/60010
---
diff --git a/gcc.spec b/gcc.spec
index fc42308..93dcc23 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -3,7 +3,7 @@
%global gcc_version 4.8.2
# Note, gcc_release must be integer, if you want to add suffixes to
# %{release}, append them after %{gcc_release} on Release: line.
-%global gcc_release 13
+%global gcc_release 14
%global _unpackaged_files_terminate_build 0
%global _performance_build 1
%global multilib_64_archs sparc64 ppc64 ppc64p7 s390x x86_64
@@ -198,6 +198,7 @@ Patch13: gcc48-pr56564.patch
Patch14: gcc48-pr56493.patch
Patch15: gcc48-color-auto.patch
Patch16: gcc48-pr28865.patch
+Patch17: gcc48-aarch64-define-TRY_EMPTY_VM_SPACE.patch
Patch1000: fastjar-0.97-segfault.patch
Patch1001: fastjar-0.97-len1.patch
@@ -758,6 +759,7 @@ package or when debugging this package.
%patch15 -p0 -b .color-auto~
%endif
%patch16 -p0 -b .pr28865~
+%patch17 -p1 -b .aarch64-pch~
%if 0%{?_enable_debug_packages}
cat > split-debuginfo.sh <<\EOF
@@ -3025,6 +3027,9 @@ fi
%{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/plugin
%changelog
+* Fri Jan 31 2014 Kyle McMartin <kyle@redhat.com> 4.8.2-14
+- aarch64: fix cc1plus segfault using pch (#1058991), PR pch/60010
+
* Tue Jan 21 2014 Jakub Jelinek <jakub@redhat.com> 4.8.2-13
- when removing -Wall from CXXFLAGS, if -Werror=format-security
is present, add -Wformat to it, so that GCC builds on F21
diff --git a/gcc48-aarch64-define-TRY_EMPTY_VM_SPACE.patch b/gcc48-aarch64-define-TRY_EMPTY_VM_SPACE.patch
new file mode 100644
index 0000000..4e54e05
--- /dev/null
+++ b/gcc48-aarch64-define-TRY_EMPTY_VM_SPACE.patch
@@ -0,0 +1,14 @@
+http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60010
+https://bugzilla.redhat.com/show_bug.cgi?id=1058991
+
+--- a/gcc/config/host-linux.c
++++ b/gcc/config/host-linux.c
+@@ -86,6 +86,8 @@
+ # define TRY_EMPTY_VM_SPACE 0x60000000
+ #elif defined(__mc68000__)
+ # define TRY_EMPTY_VM_SPACE 0x40000000
++#elif defined(__aarch64__)
++# define TRY_EMPTY_VM_SPACE 0x1000000000
+ #elif defined(__ARM_EABI__)
+ # define TRY_EMPTY_VM_SPACE 0x60000000
+ #elif defined(__mips__) && defined(__LP64__)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-29 12:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-29 12:26 [rpms/gcc] rhel-f41-base: aarch64: fix cc1plus segfault using pch (#1058991), PR pch/60010 Kyle McMartin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox