It is possible to read an object file?

前端 未结 3 690
走了就别回头了
走了就别回头了 2021-02-08 03:01

I was curious about .obj files: I pretty much don\'t know what they are (or what they contain), so I opened them with Vim text editor and what I found inside was an

3条回答
  •  梦毁少年i
    2021-02-08 04:07

    The .obj files used by link.exe has MS COFF format.

    You can find "Microsoft PE and COFF Specification" here, and parse .obj file according to it.

    Or, you can use existing tool like dumpbin.

提交回复
热议问题