From: Brian Paul Date: Wed, 21 Sep 2011 17:37:49 +0000 (-0600) Subject: translate: check for PIPE_SUBSYSTEM_EMBEDDED X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=37ef7c22ab3ab9ac976ad955197fe80fae5bf8b8;p=mesa.git translate: check for PIPE_SUBSYSTEM_EMBEDDED --- diff --git a/src/gallium/auxiliary/translate/translate_sse.c b/src/gallium/auxiliary/translate/translate_sse.c index 8cb3fd6c4c0..54414ef077f 100644 --- a/src/gallium/auxiliary/translate/translate_sse.c +++ b/src/gallium/auxiliary/translate/translate_sse.c @@ -35,7 +35,7 @@ #include "translate.h" -#if defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(__MINGW32__)) +#if (defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(__MINGW32__))) && !defined(PIPE_SUBSYSTEM_EMBEDDED) #include "rtasm/rtasm_cpu.h" #include "rtasm/rtasm_x86sse.h"