mirror of
https://github.com/libretro/libretro-super
synced 2025-01-05 21:54:33 +00:00
Update bSNES build for 092.
This commit is contained in:
parent
5984940f87
commit
06aebcc53f
@ -14,19 +14,19 @@ build_libretro_bsnes()
|
||||
{
|
||||
if [ -d "libretro-bsnes/perf" ]; then
|
||||
echo "=== Building bSNES performance ==="
|
||||
cd libretro-bsnes/perf/bsnes
|
||||
cd libretro-bsnes/perf/higan
|
||||
make platform=win compiler="$CC" ui=target-libretro profile=performance -j4 || die "Failed to build bSNES performance core"
|
||||
cp -f out/retro.dll ../../libretro-089-bsnes-performance.dll
|
||||
cp -f out/retro.dll ../../libretro-092-bsnes-performance.dll
|
||||
cd ../../..
|
||||
else
|
||||
echo "bSNES performance not fetched, skipping ..."
|
||||
fi
|
||||
|
||||
if [ -d "libretro-bsnes/compat" ]; then
|
||||
echo "=== Building bSNES compatibility ==="
|
||||
cd libretro-bsnes/compat/bsnes
|
||||
make platform=win compiler="$CC" ui=target-libretro profile=compatibility -j4 || die "Failed to build bSNES compatibility core"
|
||||
cp -f out/retro.dll ../../libretro-089-bsnes-compat.dll
|
||||
if [ -d "libretro-bsnes/balanced" ]; then
|
||||
echo "=== Building bSNES balanced ==="
|
||||
cd libretro-bsnes/compat/higan
|
||||
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 ../../..
|
||||
else
|
||||
echo "bSNES compat not fetched, skipping ..."
|
||||
@ -34,9 +34,9 @@ build_libretro_bsnes()
|
||||
|
||||
if [ -d "libretro-bsnes" ]; then
|
||||
echo "=== Building bSNES accuracy ==="
|
||||
cd libretro-bsnes/bsnes
|
||||
cd libretro-bsnes/higan
|
||||
make platform=win compiler="$CC" ui=target-libretro profile=accuracy -j4 || die "Failed to build bSNES accuracy core"
|
||||
cp -f out/retro.dll ../libretro-089-bsnes-accuracy.dll
|
||||
cp -f out/retro.dll ../libretro-092-bsnes-accuracy.dll
|
||||
cd ../..
|
||||
fi
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ build_libretro_bsnes()
|
||||
|
||||
if [ -d "libretro-bsnes/perf" ]; then
|
||||
echo "=== Building bSNES performance ==="
|
||||
cd libretro-bsnes/perf/bsnes
|
||||
cd libretro-bsnes/perf/higan
|
||||
make compiler="$CC" ui=target-libretro profile=performance -j4 || die "Failed to build bSNES performance core"
|
||||
cp -f out/libretro.so ../../libretro-bsnes-performance.so
|
||||
cd ../../..
|
||||
@ -22,11 +22,11 @@ build_libretro_bsnes()
|
||||
echo "bSNES performance not fetched, skipping ..."
|
||||
fi
|
||||
|
||||
if [ -d "libretro-bsnes/compat" ]; then
|
||||
echo "=== Building bSNES compatibility ==="
|
||||
cd libretro-bsnes/compat/bsnes
|
||||
make compiler="$CC" ui=target-libretro profile=compatibility -j4 || die "Failed to build bSNES compatibility core"
|
||||
cp -f out/libretro.so ../../libretro-bsnes-compat.so
|
||||
if [ -d "libretro-bsnes/balanced" ]; then
|
||||
echo "=== Building bSNES balanced ==="
|
||||
cd libretro-bsnes/balanced/higan
|
||||
make compiler="$CC" ui=target-libretro profile=balanced -j4 || die "Failed to build bSNES balanced core"
|
||||
cp -f out/libretro.so ../../libretro-bsnes-balanced.so
|
||||
cd ../../..
|
||||
else
|
||||
echo "bSNES compat not fetched, skipping ..."
|
||||
@ -34,7 +34,7 @@ build_libretro_bsnes()
|
||||
|
||||
if [ -d "libretro-bsnes" ]; then
|
||||
echo "=== Building bSNES accuracy ==="
|
||||
cd libretro-bsnes/bsnes
|
||||
cd libretro-bsnes/higan
|
||||
make compiler="$CC" ui=target-libretro profile=accuracy -j4 || die "Failed to build bSNES accuracy core"
|
||||
cp -f out/libretro.so ../libretro-bsnes-accuracy.so
|
||||
cd ../..
|
||||
|
@ -24,12 +24,12 @@ fetch_project_bsnes()
|
||||
git clone . perf
|
||||
fi
|
||||
|
||||
if [ -d "compat" ]; then
|
||||
cd compat
|
||||
if [ -d "balanced" ]; then
|
||||
cd balanced
|
||||
git pull ..
|
||||
cd ..
|
||||
else
|
||||
git clone . compat
|
||||
git clone . balanced
|
||||
fi
|
||||
|
||||
cd ..
|
||||
|
@ -13,9 +13,9 @@ if [ ! -d "$LIBRETRO_DIR" ]; then
|
||||
fi
|
||||
|
||||
LIBS=""
|
||||
LIBS="$LIBS libretro-bsnes/libretro-089-bsnes-performance.dll"
|
||||
LIBS="$LIBS libretro-bsnes/libretro-089-bsnes-compat.dll"
|
||||
LIBS="$LIBS libretro-bsnes/libretro-089-bsnes-accuracy.dll"
|
||||
LIBS="$LIBS libretro-bsnes/libretro-092-bsnes-performance.dll"
|
||||
LIBS="$LIBS libretro-bsnes/libretro-092-bsnes-balanced.dll"
|
||||
LIBS="$LIBS libretro-bsnes/libretro-092-bsnes-accuracy.dll"
|
||||
LIBS="$LIBS libretro-s9x/libretro-git-snes9x.dll"
|
||||
LIBS="$LIBS libretro-s9x-next/libretro-git-snes9x-next.dll"
|
||||
LIBS="$LIBS libretro-genplus/libretro-git-genplus.dll"
|
||||
|
@ -12,7 +12,7 @@ fi
|
||||
|
||||
LIBS=""
|
||||
LIBS="$LIBS libretro-bsnes/libretro-bsnes-performance.so"
|
||||
LIBS="$LIBS libretro-bsnes/libretro-bsnes-compat.so"
|
||||
LIBS="$LIBS libretro-bsnes/libretro-bsnes-balanced.so"
|
||||
LIBS="$LIBS libretro-bsnes/libretro-bsnes-accuracy.so"
|
||||
LIBS="$LIBS libretro-s9x/libretro-snes9x.so"
|
||||
LIBS="$LIBS libretro-s9x-next/libretro-snes9x-next.so"
|
||||
|
Loading…
Reference in New Issue
Block a user