From 4e053b49157368b7216efe9b9dab1abebe188060 Mon Sep 17 00:00:00 2001 From: Radius Date: Wed, 28 Jan 2015 18:44:20 -0500 Subject: [PATCH] WIP: add mingw64 target --- libretro-buildbot-recipe.sh | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index 7da3cc3c..edebc7b0 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -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}