From f533ec243c8b720a430343ece9724461a77c2ce3 Mon Sep 17 00:00:00 2001 From: AndresSM Date: Sat, 8 Nov 2014 14:57:11 -0800 Subject: [PATCH] aaaaand I'm done, assuming you have both toolchains setup these scripts and recipes should allow anyone to build winx64 cores with a single command (well one command per recipe) D all that's left to do is to build cores for win32 with different toolchains and check which toolchains work better for each core and create recipe files. Most stuff from the win64 seh recipe should work (notable exception is mednafen C Aa D --- libretro-buildbot-recipe.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index ad606d03..756c02d9 100644 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -406,6 +406,13 @@ while read line; do else BUILD="YES" fi + if [ "${PREVCORE}" == "BSNES" -a "${PREVBUILD}" == "YES" -a "${COMMAND}" == "BSNES" ]; then + FORCE="YES" + BUILD="YES" + else + FORCE="NO" + fi + cd .. @@ -464,6 +471,8 @@ while read line; do fi cd "${BASE_DIR}" + PREVCORE=$COMMAND + PREVBUILD=$BUILD done < $1