Determine source language from a binary?

后端 未结 8 692
傲寒
傲寒 2020-12-05 20:26

I responded to another question about developing for the iPhone in non-Objective-C languages, and I made the assertion that using, say, C# to write for the iPhone would stri

8条回答
  •  北海茫月
    2020-12-05 20:36

    I expect you could, if you disassemble the source, or at least you may know the compiler, as not all compilers will use the same code for printf for example, so Objective-C and gnu C should differ here.

    You have excluded all byte-code languages so this issue is going to be less common than expected.

提交回复
热议问题