From: Szabolcs Nagy Date: Mon, 4 Apr 2022 16:59:20 +0000 (+0100) Subject: aarch64: morello: rtld: define DL_RO_DYN_SECTION X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f45607de99f3b686a029bfdcc239ffb6ee0f398;p=thirdparty%2Fglibc.git aarch64: morello: rtld: define DL_RO_DYN_SECTION The dynamic section cannot be relocated to hold pointers in place. --- diff --git a/sysdeps/aarch64/morello/dl-relocate-ld.h b/sysdeps/aarch64/morello/dl-relocate-ld.h new file mode 100644 index 00000000000..493661f37c9 --- /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 + . */ + +#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 */