Il existe un outils GNU, très simple avec lequel tu pourras créer des scripts pour faire tout ce que tu veux .
GNU Development Tools
nm - list symbols from object files
Et tu peux liste selon de nombreux criètres, exemple :
"N" The symbol is a debugging symbol.
"R" The symbol is in a read only data section.
"S" The symbol is in an uninitialized data section for small objects.
"T" The symbol is in the text (code) section.
"U" The symbol is undefined.
...
# Lister les symboles
Posté par Dablah . En réponse au message Analyseur de dépendance statique C++. Évalué à 1.
GNU Development Tools
nm - list symbols from object files
Et tu peux liste selon de nombreux criètres, exemple :
"N" The symbol is a debugging symbol.
"R" The symbol is in a read only data section.
"S" The symbol is in an uninitialized data section for small objects.
"T" The symbol is in the text (code) section.
"U" The symbol is undefined.
...