Handbook
Glossary
elf-nm ( path -- )
ELF nm
Vocabulary
elf
.
nm
Inputs
path
a pathname string
Outputs
None
Word description
Prints information about the symbols in the ELF object at the given path.
Definition
USING:
accessors
elf
kernel
sequences
;
IN:
elf.nm
:
elf-nm
( path -- )
[
sections
dup
".symtab"
find-section
symbols
[
name>>
empty?
]
reject
[
print-symbol
]
with
each
]
with-mapped-elf
;