]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
aarch64: morello: rtld: define DL_RO_DYN_SECTION
authorSzabolcs Nagy <szabolcs.nagy@arm.com>
Mon, 4 Apr 2022 16:59:20 +0000 (17:59 +0100)
committerSzabolcs Nagy <szabolcs.nagy@arm.com>
Thu, 27 Oct 2022 13:46:53 +0000 (14:46 +0100)
The dynamic section cannot be relocated to hold pointers in place.

sysdeps/aarch64/morello/dl-relocate-ld.h [new file with mode: 0644]

diff --git a/sysdeps/aarch64/morello/dl-relocate-ld.h b/sysdeps/aarch64/morello/dl-relocate-ld.h
new file mode 100644 (file)
index 0000000..493661f
--- /dev/null
@@ -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 */