Skip to content
Snippets Groups Projects
Commit f4dd0991 authored by Jose Fonseca's avatar Jose Fonseca
Browse files

rtasm,translate: Disable on Mingw-w64.

Causes crash and stack corruption.

Needs more investigation. Disable for now.
parent 5812b248
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@
#include "pipe/p_config.h"
#include "util/u_cpu_detect.h"
#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
#if defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(__MINGW32__))
#include "pipe/p_compiler.h"
#include "util/u_debug.h"
......
......@@ -35,7 +35,7 @@
#include "translate.h"
#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
#if defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(__MINGW32__))
#include "rtasm/rtasm_cpu.h"
#include "rtasm/rtasm_x86sse.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment