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-10-27 14:46:53 +0100
commit80b6a5c7bedb886564a2b8bc1f3999a95334a69d (patch)
tree091daa658b51b876a0f2ec14cce144c4dfcc0513
parent7beb22bd94af7e1c7faae3a6c13a2db85af0e216 (diff)
downloadglibc-80b6a5c7bedb886564a2b8bc1f3999a95334a69d.tar.gz
glibc-80b6a5c7bedb886564a2b8bc1f3999a95334a69d.tar.xz
glibc-80b6a5c7bedb886564a2b8bc1f3999a95334a69d.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 */