Disabled MMX blitters on GCC. They break the build on tons of machines now.

--HG--
branch : SDL-1.2
This commit is contained in:
Ryan C. Gordon 2011-09-10 23:21:19 -04:00
parent f410d765ce
commit 4bcf292153
2 changed files with 4 additions and 2 deletions

View file

@ -91,7 +91,8 @@
#include "SDL_blit.h"
#include "SDL_RLEaccel_c.h"
#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) && SDL_ASSEMBLY_ROUTINES
/* Force MMX to 0; this blows up on almost every major compiler now. --ryan. */
#if 0 && defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) && SDL_ASSEMBLY_ROUTINES
#define MMX_ASMBLIT
#endif

View file

@ -32,7 +32,8 @@
#if SDL_ASSEMBLY_ROUTINES
# if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
# define MMX_ASMBLIT 1
/* forced MMX to 0...it breaks on most compilers now. --ryan. */
# define MMX_ASMBLIT 0
# define GCC_ASMBLIT 1
# elif defined(_MSC_VER) && defined(_M_IX86)
# if (_MSC_VER <= 1200)