27 lines
821 B
Diff
27 lines
821 B
Diff
commit 7e84ac3a3ac9e7c4dc10de2ce65db971b9650e4d
|
|
Author: Florian Weimer <fweimer@redhat.com>
|
|
Date: Mon Sep 20 15:50:00 2021 +0200
|
|
|
|
elf: Include <sysdep.h> in elf/dl-debug-symbols.S
|
|
|
|
This is necessary to generate assembler marker sections on some
|
|
targets.
|
|
|
|
Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
|
|
|
|
diff --git a/elf/dl-debug-symbols.S b/elf/dl-debug-symbols.S
|
|
index b7e9f5d9470c4da2..28456ab1f237ea87 100644
|
|
--- a/elf/dl-debug-symbols.S
|
|
+++ b/elf/dl-debug-symbols.S
|
|
@@ -18,6 +18,10 @@
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#include <rtld-sizes.h>
|
|
+#include <sysdep.h>
|
|
+
|
|
+/* Some targets define a macro to denote the zero register. */
|
|
+#undef zero
|
|
|
|
/* Define 2 symbols, _r_debug_extended and _r_debug, which is an alias
|
|
of _r_debug_extended, but with the size of struct r_debug. */
|