We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 395f23a + be77fa9 commit 345aacaCopy full SHA for 345aaca
mysys/my_addr_resolve.c
@@ -49,6 +49,18 @@ static const char *strip_path(const char *s)
49
static bfd *bfdh= 0;
50
static asymbol **symtable= 0;
51
52
+#ifndef bfd_get_section_flags
53
+#define bfd_get_section_flags(H, S) bfd_section_flags(S)
54
+#endif /* bfd_get_section_flags */
55
+
56
+#ifndef bfd_get_section_size
57
+#define bfd_get_section_size(S) bfd_section_size(S)
58
+#endif /* bfd_get_section_size */
59
60
+#ifndef bfd_get_section_vma
61
+#define bfd_get_section_vma(H, S) bfd_section_vma(S)
62
+#endif /* bfd_get_section_vma */
63
64
/**
65
finds a file name, a line number, and a function name corresponding to addr.
66
0 commit comments