VC Compilation Broken
cfis opened this issue · comments
Charlie Savage commented
The latest stable release of debase compiles on Visual Studio, but the betas do not. The issue is this code:
static void
attribute ((noinline))
__func_to_set_breakpoint_at()
{
asm("");
}
asm is not supported on 64 bits on Visual Studio. It would have to be something like this:
static void
__declspec(noinline)
__func_to_set_breakpoint_at()
{
}
Not sure that accomplishes what needs to be done, but at least it compiles.
Dennis Ushakov commented
Dennis Ushakov commented
@cfis I've merged the fix that should resolve this, can you check whether it works for you please?
Charlie Savage commented
Sorry, yes it did.