WIP: add mingw64 target

This commit is contained in:
Radius 2015-01-28 18:44:20 -05:00
parent 005b4abed4
commit 4e053b4915

View File

@ -189,6 +189,7 @@ build_libretro_generic_makefile() {
if [ "${NAME}" == "mame078" ]; if [ "${NAME}" == "mame078" ];
then then
OLDJ=$JOBS
JOBS=1 JOBS=1
fi fi
@ -225,6 +226,8 @@ build_libretro_generic_makefile() {
echo $jobid $1 build failure! echo $jobid $1 build failure!
fi fi
JOBS=$OLDJ
} }
build_libretro_generic_makefile() { build_libretro_generic_makefile() {
@ -243,6 +246,7 @@ build_libretro_generic_makefile() {
if [ "${NAME}" == "mame078" ]; if [ "${NAME}" == "mame078" ];
then then
JOBS=1 JOBS=1
OLDJ=$JOBS
fi fi
@ -277,6 +281,8 @@ build_libretro_generic_makefile() {
echo $jobid $1 build failure! echo $jobid $1 build failure!
fi fi
JOBS=$OLDJ
} }
build_libretro_generic_theos() { build_libretro_generic_theos() {
@ -1266,7 +1272,7 @@ then
fi fi
echo $ARCH echo $PLATFORM
if [ "${PLATFORM}" == "MINGW64" ] && [ "${RA}" == "YES" ]; if [ "${PLATFORM}" == "MINGW64" ] && [ "${RA}" == "YES" ];
then then
@ -1380,9 +1386,18 @@ then
echo "Building" echo "Building"
echo ============================================ echo ============================================
echo "cleaning up..."
echo "cleanup command: $MAKE clean"
$MAKE clean $MAKE clean
./configure
$MAKE echo "cconfiguring..."
echo "configure command: $CONFIGURE"
${CONFIGURE}
echo "building..."
echo "build command: $MAKE -j${JOBS}"
$MAKE -j${JOBS}