-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update glibc patch set to latest master-epic.
- Loading branch information
1 parent
135e596
commit 0fb5752
Showing
2 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
config/t2/package/base/glibc/0009-ia64-Qualify-u-and-bits-with-__-prefix.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
From f2d4c23fc7bbf6f3b530f2139bc8ae70f8fac328 Mon Sep 17 00:00:00 2001 | ||
From: Johnny Mnemonic <jm@machine-hall.org> | ||
Date: Thu, 3 Oct 2024 19:34:09 +0200 | ||
Subject: [PATCH 1/2] ia64: Qualify 'u' and 'bits' with '__' prefix | ||
|
||
--- | ||
sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h | 4 ++-- | ||
sysdeps/unix/sysv/linux/ia64/sys/ucontext.h | 4 ++-- | ||
2 files changed, 4 insertions(+), 4 deletions(-) | ||
|
||
diff --git a/sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h b/sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h | ||
index abc531c5f6..dc73f1202c 100644 | ||
--- a/sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h | ||
+++ b/sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h | ||
@@ -33,8 +33,8 @@ struct __ia64_fpreg | ||
{ | ||
union | ||
{ | ||
- unsigned long bits[2]; | ||
- } u; | ||
+ unsigned long __bits[2]; | ||
+ } __u; | ||
} __attribute__ ((__aligned__ (16))); | ||
|
||
struct sigcontext | ||
diff --git a/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h b/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h | ||
index 40eaee4d46..e890327a04 100644 | ||
--- a/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h | ||
+++ b/sysdeps/unix/sysv/linux/ia64/sys/ucontext.h | ||
@@ -40,8 +40,8 @@ struct __ia64_fpreg_mcontext | ||
{ | ||
union | ||
{ | ||
- unsigned long __ctx(bits)[2]; | ||
- } __ctx(u); | ||
+ unsigned long __ctx(__bits)[2]; | ||
+ } __ctx(__u); | ||
} __attribute__ ((__aligned__ (16))); | ||
|
||
typedef struct | ||
-- | ||
2.25.1 | ||
|
4 changes: 2 additions & 2 deletions
4
...Partial-math-FPU-error-fix-for-ia64.patch → ...Partial-math-FPU-error-fix-for-ia64.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters