about summary refs log tree commit diff
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-11-22 14:31:25 +0000
commit42a7a4f7b80c6addf72f1d4194e842a1293ebe90 (patch)
tree7e2488763a4eb988c4ae34891923b6bd388e1047
parent41965d796f93c63f3756ea59d93a9daaa76388f5 (diff)
downloadglibc-42a7a4f7b80c6addf72f1d4194e842a1293ebe90.tar.gz
glibc-42a7a4f7b80c6addf72f1d4194e842a1293ebe90.tar.xz
glibc-42a7a4f7b80c6addf72f1d4194e842a1293ebe90.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 */