mirror of
https://github.com/libretro/libretro-super
synced 2025-01-07 09:54:58 +00:00
Cut down on JIT compiler building lines
This commit is contained in:
parent
cdb824dc77
commit
87c7b3fee9
@ -222,14 +222,10 @@ build_libretro_desmume()
|
|||||||
if [ -d "libretro-desmume" ]; then
|
if [ -d "libretro-desmume" ]; then
|
||||||
echo "=== Building Desmume ==="
|
echo "=== Building Desmume ==="
|
||||||
cd libretro-desmume
|
cd libretro-desmume
|
||||||
if [ "$X86" = true ]; then
|
if [ "$X86" = true ] || [ "$ARMV7" = true ]; then
|
||||||
echo "=== Building Desmume with x86 JIT recompiler ==="
|
echo "=== Building Desmume with JIT recompiler ==="
|
||||||
${MAKE} -f Makefile.libretro platform=${FORMAT_COMPILER_TARGET} DESMUME_JIT=1 -j$JOBS clean || die "Failed to clean Desmume"
|
${MAKE} -f Makefile.libretro platform=${FORMAT_COMPILER_TARGET} DESMUME_JIT=1 -j$JOBS clean || die "Failed to clean Desmume"
|
||||||
${MAKE} -f Makefile.libretro platform=${FORMAT_COMPILER_TARGET} DESMUME_JIT=1 -j$JOBS || die "Failed to build Desmume"
|
${MAKE} -f Makefile.libretro platform=${FORMAT_COMPILER_TARGET} DESMUME_JIT=1 -j$JOBS || die "Failed to build Desmume"
|
||||||
elif [ "$ARMV7" = true ]; then
|
|
||||||
echo "=== Building Desmume with ARMv7 JIT recompiler ==="
|
|
||||||
${MAKE} -f Makefile.libretro platform=arm DESMUME_JIT=1 $COMPILER -j$JOBS clean || die "Failed to clean Desmume"
|
|
||||||
${MAKE} -f Makefile.libretro platform=arm DESMUME_JIT=1 $COMPILER -j$JOBS || die "Failed to build Desmume"
|
|
||||||
else
|
else
|
||||||
${MAKE} -f Makefile.libretro clean
|
${MAKE} -f Makefile.libretro clean
|
||||||
${MAKE} -f Makefile.libretro platform=$FORMAT_COMPILER_TARGET -j$JOBS
|
${MAKE} -f Makefile.libretro platform=$FORMAT_COMPILER_TARGET -j$JOBS
|
||||||
|
Loading…
Reference in New Issue
Block a user