Disable SSE in 32-bit Win32 Mingw build.

Potentially causes some issues on Win32 apparently :v
This commit is contained in:
Themaister 2013-09-27 00:11:32 +02:00
parent 933844274c
commit 9c685e47e9

View File

@ -131,8 +131,8 @@ do_build()
if [ "$BUILD_32BIT" = yes ]; then if [ "$BUILD_32BIT" = yes ]; then
message "Building for 32-bit!" message "Building for 32-bit!"
C_COMPILER="${MINGW32_BASE}-gcc -msse" C_COMPILER="${MINGW32_BASE}-gcc"
CXX_COMPILER="${MINGW32_BASE}-g++ -msse" CXX_COMPILER="${MINGW32_BASE}-g++"
WINDRES=${MINGW32_BASE}-windres WINDRES=${MINGW32_BASE}-windres
do_build "RetroArch-w32" "RetroArch-win32-libs.zip" "x86" do_build "RetroArch-w32" "RetroArch-win32-libs.zip" "x86"
fi fi