1
0
mirror of https://github.com/libretro/libretro-super synced 2025-04-02 13:20:19 +00:00

I broke mame on 32 bit recently, oops, this fixes it.

This commit is contained in:
T. Joseph Carter 2015-02-22 22:31:11 -08:00
parent e3103cfd94
commit ac43c12ab4

@ -481,14 +481,14 @@ build_libretro_mame_modern() {
else else
[ "$X86_64" = "true" ] && PTR64=1 [ "$X86_64" = "true" ] && PTR64=1
if [ -z "$NOCLEAN" ]; then if [ -z "$NOCLEAN" ]; then
echo_cmd "$MAKE PTR64=1 -f Makefile.libretro \"TARGET=$2\" \"PARTIAL=$3\" platform=\"$FORMAT_COMPILER_TARGET\" \"-j$JOBS\" clean" || die 'Failed to clean MAME' echo_cmd "$MAKE PTR64=\"$PTR64\" -f Makefile.libretro \"TARGET=$2\" \"PARTIAL=$3\" platform=\"$FORMAT_COMPILER_TARGET\" \"-j$JOBS\" clean" || die 'Failed to clean MAME'
fi fi
if [ "$CC $CXX" != " " ]; then if [ "$CC $CXX" != " " ]; then
echo_cmd "$MAKE PTR64=1 -f Makefile.libretro \"TARGET=$2\" platform=\"$FORMAT_COMPILER_TARGET\" CC=\"$CC\" CXX=\"$CXX\" \"-j$JOBS\"" || die 'Failed to build MAME' echo_cmd "$MAKE PTR64=\"$PTR64\" -f Makefile.libretro \"TARGET=$2\" platform=\"$FORMAT_COMPILER_TARGET\" CC=\"$CC\" CXX=\"$CXX\" \"-j$JOBS\"" || die 'Failed to build MAME'
else else
# TODO: Remove this condition post-1.1 # TODO: Remove this condition post-1.1
echo_cmd "$MAKE PTR64=1 -f Makefile.libretro \"TARGET=$2\" platform=\"$FORMAT_COMPILER_TARGET\" \"-j$JOBS\"" || die 'Failed to build MAME' echo_cmd "$MAKE PTR64=\"$PTR64\" -f Makefile.libretro \"TARGET=$2\" platform=\"$FORMAT_COMPILER_TARGET\" \"-j$JOBS\"" || die 'Failed to build MAME'
fi fi
fi fi