Remove support for mingw

MSVC works fine and the bundled mingw libraries are outdated.
This commit is contained in:
Martin Natano
2022-06-07 22:49:05 +02:00
parent 087d4576cc
commit 838de6fb81
40 changed files with 34 additions and 32477 deletions
-9
View File
@@ -571,15 +571,6 @@ static void NORETURN debug_crash()
__asm mov eax,dword ptr [ebx]
// __asm mov dword ptr [ebx],eax
// __asm lock add dword ptr cs:[00000000h], 12345678h
#elif defined(__GNUC__)
// HACK: I don't know a lick of ASM and don't know how to port this to
// the AT&T syntax gas uses. So we temporarily change it.
asm(".intel_syntax noprefix\n\t"
"xor ebx,ebx\n\t"
"mov eax,dword ptr [ebx]\n\t"
// "mov dword ptr [ebx],eax"
// "lock add dword ptr cs:[00000000h], 12345678h"
".att_syntax noprefix\n\t");
#endif
// } __except( CrashHandler::ExceptionHandler((EXCEPTION_POINTERS*)_exception_info()) ) {
// }