From b396147224f518bf74074acae6d13f837640416c Mon Sep 17 00:00:00 2001 From: hizzlekizzle Date: Wed, 28 Dec 2016 23:05:52 -0600 Subject: [PATCH] 32-bit redist lib collection fix using ntldd -R. Just added before the old one for now, just in case. --- libretro-buildbot-recipe.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/libretro-buildbot-recipe.sh b/libretro-buildbot-recipe.sh index 846e508a..a119a681 100755 --- a/libretro-buildbot-recipe.sh +++ b/libretro-buildbot-recipe.sh @@ -1438,6 +1438,7 @@ if [ "${PLATFORM}" = "MINGW64" ] || [ "${PLATFORM}" = "MINGW32" ] || [ "${PLATFO ${HELPER} ${MAKE} clean ${HELPER} ${MAKE} -j${JOBS} DEBUG=1 GL_DEBUG=1 2>&1 | tee -a $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_RetroArch_DEBUG_${PLATFORM}.txt + for i in $(seq 3); do for bin in $(ntldd -R *exe | grep -i mingw | cut -d">" -f2 | cut -d" " -f2); do cp -vu "$bin" . ; done; done for i in $(seq 3); do for bin in $(ntldd *exe *dll | grep -i mingw | cut -d\ -f 3); do cp -vu "$bin" . ; done; for bin in $(ldd *exe *dll | grep -i mingw | cut -d\ -f 3); do cp -vu "$bin" . ; done; done; cp -v retroarch.exe windows/retroarch_debug.exe | tee -a $TMPDIR/log/${BOT}/${LOGDATE}/${LOGDATE}_RetroArch_${PLATFORM}.txt