aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2022-04-04 17:59:20 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2022-08-05 19:45:19 +0100
commit4f45607de99f3b686a029bfdcc239ffb6ee0f398 (patch)
treebe452a2b489b123b6e9e1b56a40e074cd0ef73fc
parentc755eefac5059eef147d3aadccc3eecf8acb3706 (diff)
downloadglibc-4f45607de99f3b686a029bfdcc239ffb6ee0f398.tar
glibc-4f45607de99f3b686a029bfdcc239ffb6ee0f398.tar.gz
glibc-4f45607de99f3b686a029bfdcc239ffb6ee0f398.tar.bz2
glibc-4f45607de99f3b686a029bfdcc239ffb6ee0f398.zip
aarch64: morello: rtld: define DL_RO_DYN_SECTION
The dynamic section cannot be relocated to hold pointers in place.
-rw-r--r--sysdeps/aarch64/morello/dl-relocate-ld.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/sysdeps/aarch64/morello/dl-relocate-ld.h b/sysdeps/aarch64/morello/dl-relocate-ld.h
new file mode 100644
index 0000000000..493661f37c
--- /dev/null
+++ b/sysdeps/aarch64/morello/dl-relocate-ld.h
@@ -0,0 +1,25 @@
+/* Check if dynamic section should be relocated. Morello version.
+ Copyright (C) 2022 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, see
+ <https://www.gnu.org/licenses/>. */
+
+#ifndef _DL_RELOCATE_LD_H
+#define _DL_RELOCATE_LD_H
+
+/* Don't relocate the dynamic section because capabilities don't fit. */
+#define DL_RO_DYN_SECTION 1
+
+#endif /* _DL_RELOCATE_LD_H */