BoomerangDecompiler / boomerang

Boomerang Decompiler - Fighting the code-rot :)
Other
374 stars 59 forks source link

Fix compile errors when compiling on MinGW #82

Closed ceeac closed 6 years ago

ceeac commented 6 years ago

Fixes #77. (hopefully)

nemerle commented 6 years ago

Almost works, one change, in Win32BinayLoader.cpp, I had to make to build it correctly:

#ifdef _WIN32
#    ifndef __MINGW32__
#       define NOMINMAX
#       include <windows.h>
namespace dbghelp
{
#       include <dbghelp.h>
}
#    endif
#endif