1.

Solve : Solved - "Dissassembling a C++ .LIB or .OBJ"?

Answer»

Does anybody know how to disassemble a C++ .LIB or .OBJ file?you can use the dumpbin program to dissasemble a program.


DUMPBIN FILE.OBJ /DISASM > FILE.ASM
Is it built in(I DONT think so) or where do I find it?
oh... yeah. Not everybody has Visual Studio... DUH!


Here are a few I managed to dig up, Not sure if they'll work with OBJ or LIB.


Say- why do you want to dissassemble it anyway?Sorry, I was late.

Quote from: BC_Programmer on November 26, 2008, 01:18:47 AM

Here are a few I managed to dig up, Not sure if they'll work with OBJ or LIB.
What links?

Quote from: BC_Programmer on November 26, 2008, 01:18:47 AM
Say- why do you want to dissassemble it anyway?
To find the declaration of POW(), and a few other functions.





lol.

oops.


I forget the link I had on my clipboard at that time. But another search found a program called "hackman"

It claims to be able to dissasemble from OBJ and BIN.

http://www.freewareweb.com/cgi-bin/archive.cgi?ID=185

Strictly speaking, "decompile" is the word, surely?
decompile would turn it back into source code.so,
technically, disassembling is a special case of decompiling, just into a particular language, ASM.Thanks, GUYS.


Discussion

No Comment Found