libretro-super/libretro-build-win32.sh

270 lines
7.1 KiB
Bash
Raw Normal View History

2012-04-22 15:12:15 +00:00
#!/bin/sh
die()
{
echo $1
#exit 1
}
2013-03-02 08:36:28 +00:00
if [ "$HOST_CC" ]; then
CC="${HOST_CC}-gcc"
CXX="${HOST_CC}-g++"
STRIP="${HOST_CC}-strip"
fi
if [ -z "$CC" ]; then
CC=gcc
fi
2013-03-02 08:36:28 +00:00
if [ -z "$CXX" ]; then
CXX=g++
2013-03-02 08:36:28 +00:00
fi
2012-04-22 15:12:15 +00:00
build_libretro_bsnes()
{
if [ -d "libretro-bsnes/perf" ]; then
echo "=== Building bSNES performance ==="
2013-01-15 11:24:05 +00:00
cd libretro-bsnes/perf/higan
make platform=win compiler="$CC" ui=target-libretro profile=performance -j4 || die "Failed to build bSNES performance core"
2013-01-15 11:24:05 +00:00
cp -f out/retro.dll ../../libretro-092-bsnes-performance.dll
cd ../../..
2012-04-22 15:12:15 +00:00
else
echo "bSNES performance not fetched, skipping ..."
fi
2013-01-15 11:24:05 +00:00
if [ -d "libretro-bsnes/balanced" ]; then
echo "=== Building bSNES balanced ==="
2013-02-17 10:55:34 +00:00
cd libretro-bsnes/balanced/higan
2013-01-15 11:24:05 +00:00
make platform=win compiler="$CC" ui=target-libretro profile=balanced -j4 || die "Failed to build bSNES balanced core"
cp -f out/retro.dll ../../libretro-092-bsnes-balanced.dll
cd ../../..
2012-04-22 15:12:15 +00:00
else
echo "bSNES compat not fetched, skipping ..."
fi
if [ -d "libretro-bsnes" ]; then
echo "=== Building bSNES accuracy ==="
2013-01-15 11:24:05 +00:00
cd libretro-bsnes/higan
make platform=win compiler="$CC" ui=target-libretro profile=accuracy -j4 || die "Failed to build bSNES accuracy core"
2013-01-15 11:24:05 +00:00
cp -f out/retro.dll ../libretro-092-bsnes-accuracy.dll
cd ../..
2012-04-22 15:12:15 +00:00
fi
}
2012-11-08 22:00:55 +00:00
build_libretro_mednafen()
{
if [ -d "libretro-mednafen" ]; then
echo "=== Building Mednafen ==="
cd libretro-mednafen
cd psx
make core=psx platform=win CC=$CC CXX=$CXX -j4 || die "Failed to build mednafen/psx"
2013-03-02 08:36:28 +00:00
cp retro.dll ../libretro-0928-mednafen-psx.dll
"$STRIP" ../libretro-0928-mednafen-psx.dll
2012-11-08 22:00:55 +00:00
cd ..
cd pce-fast
make core=pce-fast platform=win CC=$CC CXX=$CXX -j4 || die "Failed to build mednafen/pce-fast"
cp retro.dll ../libretro-0928-mednafen-pce-fast.dll
"$STRIP" ../libretro-0928-mednafen-pce-fast.dll
2012-11-08 22:00:55 +00:00
cd ..
cd wswan
make core=wswan platform=win CC=$CC CXX=$CXX -j4 || die "Failed to build mednafen/wswan"
cp retro.dll ../libretro-0928-mednafen-wswan.dll
"$STRIP" ../libretro-0928-mednafen-wswan.dll
2012-11-08 22:00:55 +00:00
cd ..
2012-11-08 22:14:01 +00:00
cd ..
2012-11-08 22:00:55 +00:00
else
echo "Mednafen not fetched, skipping ..."
fi
}
2012-04-22 15:12:15 +00:00
build_libretro_s9x()
{
if [ -d "libretro-s9x" ]; then
echo "=== Building SNES9x ==="
cd libretro-s9x/libretro
make CC=$CC CXX=$CXX platform=win -j4 || die "Failed to build SNES9x"
cp libretro.dll ../libretro-git-snes9x.dll
cd ../..
else
echo "SNES9x not fetched, skipping ..."
fi
}
build_libretro_s9x_next()
{
if [ -d "libretro-s9x-next" ]; then
echo "=== Building SNES9x-Next ==="
cd libretro-s9x-next/
make CC=$CC CXX=$CXX platform=win -f Makefile.libretro -j4 || die "Failed to build SNES9x-Next"
2013-02-17 11:13:41 +00:00
cp snes9x_next_retro.dll libretro-git-snes9x-next.dll
2012-04-22 15:12:15 +00:00
cd ..
else
echo "SNES9x-Next not fetched, skipping ..."
fi
}
build_libretro_genplus()
{
if [ -d "libretro-genplus" ]; then
echo "=== Building Genplus GX ==="
cd libretro-genplus/
make CC=$CC CXX=$CXX platform=win -f Makefile.libretro -j4 || die "Failed to build Genplus GX"
2013-02-17 11:13:41 +00:00
cp genesis_plus_gx_retro.dll libretro-git-genplus.dll
2012-04-22 15:12:15 +00:00
cd ..
else
echo "Genplus GX not fetched, skipping ..."
fi
}
build_libretro_fba()
{
if [ -d "libretro-fba" ]; then
echo "=== Building Final Burn Alpha ==="
2013-02-17 11:07:05 +00:00
cd libretro-fba/svn-current/trunk
2012-04-22 15:12:15 +00:00
make CC=$CC CXX=$CXX platform=win -f makefile.libretro -j4 || die "Failed to build Final Burn Alpha"
2013-02-17 11:17:04 +00:00
cp fb_alpha_retro.dll ../../libretro-git-fba.dll
2013-01-05 12:32:01 +00:00
cd ../../..
2012-04-22 15:12:15 +00:00
else
echo "Final Burn Alpha not fetched, skipping ..."
fi
}
build_libretro_vba()
{
if [ -d "libretro-vba" ]; then
echo "=== Building VBA-Next ==="
cd libretro-vba/
make CC=$CC CXX=$CXX platform=win -f Makefile.libretro -j4 || die "Failed to build VBA-Next"
2013-02-17 11:17:04 +00:00
cp vba_next_retro.dll libretro-git-vba.dll
2012-04-22 15:12:15 +00:00
cd ..
else
echo "VBA-Next not fetched, skipping ..."
fi
}
build_libretro_bnes()
{
if [ -d "libretro-bnes" ]; then
echo "=== Building bNES ==="
cd libretro-bnes
mkdir -p obj
make CC=$CC CXX=$CXX platform=win -j4 || die "Failed to build bNES"
cp retro.dll libretro-git-bnes.dll
cd ..
else
echo "bNES not fetched, skipping ..."
fi
}
build_libretro_fceu()
{
if [ -d "libretro-fceu" ]; then
echo "=== Building FCEU ==="
cd libretro-fceu
2013-02-17 11:18:58 +00:00
make CC=$CC CXX=$CXX platform=win -C fceumm-code -f Makefile.libretro -j4 || die "Failed to build FCEU"
cp fceumm-code/fceumm_retro.dll libretro-git-fceu.dll
2012-04-22 15:12:15 +00:00
cd ..
else
echo "FCEU not fetched, skipping ..."
fi
}
build_libretro_gambatte()
{
if [ -d "libretro-gambatte" ]; then
echo "=== Building Gambatte ==="
cd libretro-gambatte/libgambatte
make CC=$CC CXX=$CXX platform=win -f Makefile.libretro -j4 || die "Failed to build Gambatte"
2013-02-17 11:20:04 +00:00
cp gambatte_retro.dll ../libretro-git-gambatte.dll
2012-04-22 15:12:15 +00:00
cd ../..
else
echo "Gambatte not fetched, skipping ..."
fi
}
build_libretro_meteor()
{
if [ -d "libretro-meteor" ]; then
echo "=== Building Meteor ==="
cd libretro-meteor/libretro
make platform=win CC=$CC CXX=$CXX -j4 || die "Failed to build Meteor"
cp retro.dll ../libretro-git-meteor.dll
2012-08-28 08:17:04 +00:00
cd ../..
2012-04-22 15:12:15 +00:00
else
echo "Meteor not fetched, skipping ..."
fi
}
2012-08-28 08:07:58 +00:00
build_libretro_stella()
{
if [ -d "libretro-stella" ]; then
echo "=== Building Stella ==="
cd libretro-stella
make platform=win CC=$CC CXX=$CXX -j4 || die "Failed to build Stella"
2013-04-16 12:24:46 +00:00
cp stella_retro.dll libretro-git-stella.dll
2012-08-28 08:07:58 +00:00
cd ../
else
echo "Stella not fetched, skipping ..."
fi
}
2012-10-31 20:05:58 +00:00
build_libretro_desmume()
{
if [ -d "libretro-desmume" ]; then
echo "=== Building Desmume ==="
cd libretro-desmume
make platform=win CC=$CC CXX=$CXX -f Makefile.libretro -j4 || die "Failed to build Desmume"
cp retro.dll libretro-git-desmume.dll
cd ../
else
echo "Desmume not fetched, skipping ..."
fi
}
2013-01-10 13:51:06 +00:00
build_libretro_quicknes()
{
if [ -d "libretro-quicknes" ]; then
2013-04-16 12:24:46 +00:00
echo "=== Building QuickNES ==="
2013-01-10 13:51:06 +00:00
cd libretro-quicknes/libretro
make platform=win CC=$CC CXX=$CXX -j4 || die "Failed to build QuickNES"
2013-04-16 12:24:46 +00:00
cp quicknes_retro.dll ../libretro-git-quicknes.dll
2013-01-10 13:51:06 +00:00
cd ../..
else
echo "QuickNES not fetched, skipping ..."
fi
}
2013-01-16 08:08:42 +00:00
build_libretro_nestopia()
{
if [ -d "libretro-nestopia" ]; then
echo "=== Building Nestopia ==="
cd libretro-nestopia/libretro
make platform=win CC=$CC CXX=$CXX -j4 || die "Failed to build Nestopia"
2013-02-17 11:23:00 +00:00
cp nestopia_retro.dll ../libretro-144-nestopia.dll
2013-01-16 08:08:42 +00:00
cd ../..
else
2013-02-17 11:23:00 +00:00
echo "Nestopia not fetched, skipping ..."
2013-01-16 08:08:42 +00:00
fi
}
2013-01-10 13:51:06 +00:00
2012-04-22 15:12:15 +00:00
build_libretro_bsnes
2012-11-08 22:00:55 +00:00
build_libretro_mednafen
2012-04-22 15:12:15 +00:00
build_libretro_s9x
build_libretro_s9x_next
build_libretro_genplus
build_libretro_fba
build_libretro_vba
build_libretro_bnes
build_libretro_fceu
build_libretro_gambatte
build_libretro_meteor
2012-08-28 08:07:58 +00:00
build_libretro_stella
2012-10-31 20:05:58 +00:00
build_libretro_desmume
2013-01-10 13:51:06 +00:00
build_libretro_quicknes
2013-01-16 08:08:42 +00:00
build_libretro_nestopia
2012-04-22 15:12:15 +00:00