Exemplo n.º 1
0
 def extract(self, lib):
     """
     Extract symbols from a library and return the results as a dict of
     parsed symbols.
     """
     cmd = [self.tool] + self.flags + [lib]
     out, _, exit_code = util.execute_command_verbose(cmd)
     if exit_code != 0:
         raise RuntimeError('Failed to run %s on %s' % (self.nm_exe, lib))
     dyn_syms = self.get_dynsym_table(out)
     return self.process_syms(dyn_syms)
Exemplo n.º 2
0
 def extract(self, lib):
     """
     Extract symbols from a library and return the results as a dict of
     parsed symbols.
     """
     cmd = [self.tool] + self.flags + [lib]
     out, _, exit_code = util.execute_command_verbose(cmd)
     if exit_code != 0:
         raise RuntimeError('Failed to run %s on %s' % (self.nm_exe, lib))
     dyn_syms = self.get_dynsym_table(out)
     return self.process_syms(dyn_syms)
Exemplo n.º 3
0
 def extract(self, lib):
     """
     Extract symbols from a library and return the results as a dict of
     parsed symbols.
     """
     cmd = [self.nm_exe] + self.flags + [lib]
     out, _, exit_code = util.execute_command_verbose(cmd)
     if exit_code != 0:
         raise RuntimeError('Failed to run %s on %s' % (self.nm_exe, lib))
     fmt_syms = (self._extract_sym(l) for l in out.splitlines()
                 if l.strip())
     # Cast symbol to string.
     final_syms = (repr(s) for s in fmt_syms if self._want_sym(s))
     # Make unique and sort strings.
     tmp_list = list(sorted(set(final_syms)))
     # Cast string back to symbol.
     return util.read_syms_from_list(tmp_list)
Exemplo n.º 4
0
 def extract(self, lib):
     """
     Extract symbols from a library and return the results as a dict of
     parsed symbols.
     """
     cmd = [self.nm_exe] + self.flags + [lib]
     out, _, exit_code = util.execute_command_verbose(cmd)
     if exit_code != 0:
         raise RuntimeError('Failed to run %s on %s' % (self.nm_exe, lib))
     fmt_syms = (self._extract_sym(l)
                 for l in out.splitlines() if l.strip())
         # Cast symbol to string.
     final_syms = (repr(s) for s in fmt_syms if self._want_sym(s))
     # Make unique and sort strings.
     tmp_list = list(sorted(set(final_syms)))
     # Cast string back to symbol.
     return util.read_syms_from_list(tmp_list)