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