It introduces four patches about aligning PT_LOAD segments and update to glibc-2.28-225.0.2.el8. Signed-off-by: Rongwei Wang <rongwei.wang@linux.alibaba.com>
40 lines
970 B
Diff
40 lines
970 B
Diff
From 8b39d3b4bf2fc49ab31f31cf30aa80104afa3432 Mon Sep 17 00:00:00 2001
|
|
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
|
Date: Wed, 19 Jul 2023 23:14:33 +0800
|
|
Subject: [PATCH 6/6] elf: Fix tst-align3
|
|
|
|
The elf/tst-align3.c declares the function using a wrong prototype.
|
|
|
|
Checked on aarch64-linux-gnu.
|
|
|
|
Signed-off-by: Rongwei Wang <rongwei.wang@linux.alibaba.com>
|
|
---
|
|
elf/tst-align3.c | 5 +++--
|
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/elf/tst-align3.c b/elf/tst-align3.c
|
|
index 87a8ff81..731dd59f 100644
|
|
--- a/elf/tst-align3.c
|
|
+++ b/elf/tst-align3.c
|
|
@@ -22,7 +22,7 @@
|
|
|
|
int bar __attribute__ ((aligned (ALIGN))) = 1;
|
|
|
|
-extern int do_load_test (void);
|
|
+extern void do_load_test (void);
|
|
|
|
static int
|
|
do_test (void)
|
|
@@ -30,7 +30,8 @@ do_test (void)
|
|
printf ("bar: %p\n", &bar);
|
|
TEST_VERIFY (is_aligned (&bar, ALIGN) == 0);
|
|
|
|
- return do_load_test ();
|
|
+ do_load_test ();
|
|
+ return 0;
|
|
}
|
|
|
|
#include <support/test-driver.c>
|
|
--
|
|
2.27.0
|
|
|