wisk / medusa

An open source interactive disassembler
Other
1.04k stars 92 forks source link

Mac OS X Unix Module #18

Closed saeschdivara closed 9 years ago

saeschdivara commented 9 years ago

Hey,

I wanted to say that your code for unique_module.cpp needs an update so that it works too on OS X:

char const* Module::GetExtension(void)
{
#ifdef __APPLE__
    return "dylib";
#else
    return "so";
#endif
}
wisk commented 9 years ago

I will apply this patch ASAP, thanks for sharing! :)

saeschdivara commented 9 years ago

Thank you for this awesome application :)

wisk commented 9 years ago

It's fixed https://github.com/wisk/medusa/commit/3f1a16c6c91b2e43debc50be1732092029a66140 thanks again and glad you like this project. :)