Lines Matching defs:elf
29 import pkg.elf as elf
35 """Exception that is raised when the elf dependency checker is given
45 return _("{file} had this elf error:{err}").format(
49 """Exception that is used for elf dependencies which have a dynamic
69 as determined by elf."""
75 [base_name], run_paths, pkg_vars, proto_dir, "elf")
78 """Because elf dependencies can be either warnings or errors,
153 """Produce the elf dependencies for the file delivered in the action
164 'run_paths' contains the run paths which elf binaries should use.
177 if not elf.is_elf_object(proto_file):
181 ei = elf.get_info(proto_file)
182 ed = elf.get_dynamic(proto_file)
183 except elf.ElfError as e: