Can you find out which compiler was used to compile a program?

前端 未结 7 544
迷失自我
迷失自我 2021-02-05 09:45

Given an executable that is compiled from C to run on Solaris, is it possible to determine which compiler was used to compile the associated incomplete executable?

I can

相关标签:
7条回答
  • 2021-02-05 10:28

    Compilers usually add their own personal "signature" as plaintext in the compiled files. You can use a tool such as strings to suss the plaintext out.

    0 讨论(0)
提交回复
热议问题