xaizek / objdeps (License: Apache-2.0) (since 2020-09-11)
This is a python script that analyzes output of `objdump` to understand connections between object files.
Commit 8c4e8652b467e35e263c3d2f3fd5ea3da7666222

Remove unused function to run `nm`
Author: xaizek
Author date (UTC): 2016-09-26 10:24
Committer name: xaizek
Committer date (UTC): 2016-09-26 10:24
Parent(s): 07f6d8f9e7fc7209b3ee816cb30ae6c9a748eba8
Signing key: 99DC5E4DB05F6BE2
Tree: a24f4a596f662db6c07c3e405774fd3893d4ef4e
File Lines added Lines deleted
deps.py 0 11
File deps.py changed (mode: 100755) (index 3bc84e3..46cb5cb)
... ... class function:
99 99 def __str__(self): def __str__(self):
100 100 return self.name return self.name
101 101
102 def getFuncNm(line):
103 parts = line.split()
104 if len(parts) == 3 and parts[1] == 'T':
105 return (IMPORT, parts[2])
106 elif len(parts) == 3 and parts[1] == 't':
107 return (EXPORT, parts[2])
108 elif len(parts) == 2 and parts[0] == 'U':
109 return (IMPORT, parts[1])
110 else:
111 return (INVALID, None)
112
113 102 def getFuncObjdump(line): def getFuncObjdump(line):
114 103 parts = line.split() parts = line.split()
115 104 if len(parts) == 6 and parts[1] == 'g' and parts[2] == 'F': if len(parts) == 6 and parts[1] == 'g' and parts[2] == 'F':
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/objdeps

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/objdeps

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master