I would to like ask this question, whether gcc is having "plugin" which can list the source file from binary file (binary is not stripped) ?? If plugin is not available, then could anyone please guide me "how to implement the same as gcc features.
Asked
Active
Viewed 72 times
0
-
Is there any feasibility to implement the same.? – Anshu Sharma Apr 14 '15 at 07:59
-
It is not what GCC about -- GCC is compiler, not decompiler. This "plugin" is called "objdump with source annotations". – Konstantin Vladimirov Apr 14 '15 at 12:47
-
@KonstantinVladimirov: Thanks for your reply. yes, you are absolutely correct, same can be achieved through **objdump** and **gdb** as well.But as per my requirement it has to through **gcc**. so can we done same through gcc (Is there any feasibility to achieved same) – Anshu Sharma Apr 15 '15 at 04:47