mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 02:19:41 +00:00
Cleanups
This commit is contained in:
parent
6a41bbf277
commit
148146b9b5
@ -14,6 +14,4 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The theos build rules have all been moved to libretro-build.sh
|
|
||||||
|
|
||||||
platform=theos_ios ${BASE_DIR}/libretro-build.sh $@
|
platform=theos_ios ${BASE_DIR}/libretro-build.sh $@
|
||||||
|
@ -14,6 +14,4 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The iOS build rules have all been moved to libretro-build.sh
|
|
||||||
|
|
||||||
platform=ios ${BASE_DIR}/libretro-build.sh $@
|
platform=ios ${BASE_DIR}/libretro-build.sh $@
|
||||||
|
@ -14,6 +14,4 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The NGC build rules have all been moved to libretro-build.sh
|
|
||||||
|
|
||||||
platform=ngc ${BASE_DIR}/libretro-build.sh $@
|
platform=ngc ${BASE_DIR}/libretro-build.sh $@
|
||||||
|
@ -14,8 +14,6 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The PS3 build rules have all been moved to libretro-build.sh
|
|
||||||
|
|
||||||
if [[ -z "$1" ]]; then
|
if [[ -z "$1" ]]; then
|
||||||
WANT_CORES=" \
|
WANT_CORES=" \
|
||||||
fb_alpha \
|
fb_alpha \
|
||||||
|
@ -14,6 +14,4 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The PSP1 build rules have all been moved to libretro-build.sh
|
|
||||||
|
|
||||||
platform=psp1 ${BASE_DIR}/libretro-build.sh $@
|
platform=psp1 ${BASE_DIR}/libretro-build.sh $@
|
||||||
|
@ -14,6 +14,4 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The QNX build rules have all been moved to libretro-build.sh
|
|
||||||
|
|
||||||
platform=qnx ${BASE_DIR}/libretro-build.sh $@
|
platform=qnx ${BASE_DIR}/libretro-build.sh $@
|
||||||
|
@ -14,8 +14,6 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The SNC PS3 build rules have all been moved to libretro-build.sh
|
|
||||||
|
|
||||||
if [[ -z "$1" ]]; then
|
if [[ -z "$1" ]]; then
|
||||||
WANT_CORES=" \
|
WANT_CORES=" \
|
||||||
2048
|
2048
|
||||||
|
@ -14,6 +14,4 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The Wii build rules have all been moved to libretro-build.sh
|
|
||||||
|
|
||||||
platform=wii ${BASE_DIR}/libretro-build.sh $@
|
platform=wii ${BASE_DIR}/libretro-build.sh $@
|
||||||
|
@ -187,25 +187,15 @@ build_default_cores() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $platform != "psp1" ] && [ $platform != "wii" ] && [ $platform != "ngc" ]; then
|
if [ $platform != "psp1" ] && [ $platform != "wii" ] && [ $platform != "ngc" ]; then
|
||||||
# (PSP/NGC/Wii) Performance issues
|
# (PSP/NGC/Wii) Performance and/or binary size issues
|
||||||
libretro_build_core bsnes_cplusplus98
|
libretro_build_core bsnes_cplusplus98
|
||||||
if [ $platform != "psp1" ]; then
|
|
||||||
libretro_build_core mame078
|
libretro_build_core mame078
|
||||||
fi
|
|
||||||
libretro_build_core mednafen_gba
|
libretro_build_core mednafen_gba
|
||||||
fi
|
fi
|
||||||
|
|
||||||
libretro_build_core mednafen_lynx
|
libretro_build_core mednafen_lynx
|
||||||
libretro_build_core mednafen_ngp
|
libretro_build_core mednafen_ngp
|
||||||
libretro_build_core mednafen_pce_fast
|
libretro_build_core mednafen_pce_fast
|
||||||
if [ $platform != "psp1" ] && [ $platform != "wii" ] && [ $platform != "ngc" ] && [ $platform != "ps3" ] && [ $platform != "sncps3" ]; then
|
|
||||||
# Excluded for performance reasons
|
|
||||||
libretro_build_core mednafen_pcfx
|
|
||||||
libretro_build_core mednafen_psx
|
|
||||||
if [ $platform != "qnx" ]; then
|
|
||||||
libretro_build_core mednafen_snes
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
libretro_build_core mednafen_supergrafx
|
libretro_build_core mednafen_supergrafx
|
||||||
libretro_build_core mednafen_vb
|
libretro_build_core mednafen_vb
|
||||||
@ -214,9 +204,6 @@ build_default_cores() {
|
|||||||
libretro_build_core gw
|
libretro_build_core gw
|
||||||
|
|
||||||
if [ $platform != "ps3" ] && [ $platform != "sncps3" ]; then
|
if [ $platform != "ps3" ] && [ $platform != "sncps3" ]; then
|
||||||
if [ $platform != "wii" ] && [ $platform != "ngc" ]; then
|
|
||||||
libretro_build_core lutro
|
|
||||||
fi
|
|
||||||
libretro_build_core fuse
|
libretro_build_core fuse
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -225,20 +212,24 @@ build_default_cores() {
|
|||||||
|
|
||||||
build_default_cores_libretro_gl
|
build_default_cores_libretro_gl
|
||||||
|
|
||||||
|
libretro_build_core lutro
|
||||||
|
|
||||||
# (PS3/NGC/Wii) Excluded for performance reasons
|
# (PS3/NGC/Wii) Excluded for performance reasons
|
||||||
libretro_build_core snes9x
|
libretro_build_core snes9x
|
||||||
libretro_build_core vbam
|
libretro_build_core vbam
|
||||||
|
|
||||||
if [ $platform != "qnx" ] && [ $platform != "psp1" ]; then
|
|
||||||
# Just basic compilation issues right now for these platforms
|
|
||||||
libretro_build_core emux
|
|
||||||
fi
|
|
||||||
|
|
||||||
# The only reason this won't be compiled in yet for PS3/Wii is
|
|
||||||
# 1) Wii/NGC - too big in binary size
|
|
||||||
# 2) PS3 - filesystem API issues
|
|
||||||
if [ $platform != "psp1" ]; then
|
if [ $platform != "psp1" ]; then
|
||||||
|
# The only reason ScummVM won't be compiled in yet is
|
||||||
|
# 1) Wii/NGC/PSP - too big in binary size
|
||||||
|
# 2) PS3 - filesystem API issues
|
||||||
libretro_build_core scummvm
|
libretro_build_core scummvm
|
||||||
|
|
||||||
|
# Excluded for performance reasons
|
||||||
|
libretro_build_core mednafen_pcfx
|
||||||
|
libretro_build_core mednafen_psx
|
||||||
|
if [ $platform != "qnx" ]; then
|
||||||
|
libretro_build_core mednafen_snes
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Could work on PS3/Wii right now but way too slow right now,
|
# Could work on PS3/Wii right now but way too slow right now,
|
||||||
@ -248,12 +239,13 @@ build_default_cores() {
|
|||||||
# Compilation/port status issues
|
# Compilation/port status issues
|
||||||
libretro_build_core hatari
|
libretro_build_core hatari
|
||||||
libretro_build_core meteor
|
libretro_build_core meteor
|
||||||
fi
|
|
||||||
|
|
||||||
|
if [ $platform != "qnx" ] && [ $platform != "psp1" ]; then
|
||||||
if [ $platform != "qnx" ] && [ $platform != "ps3" ] && [ $platform != "sncps3" ] && [ $platform != "psp1" ] && [ $platform != "ngc" ] && [ $platform != "wii" ]; then
|
|
||||||
build_default_cores_cpp11
|
build_default_cores_cpp11
|
||||||
|
|
||||||
|
# Just basic compilation issues right now for these platforms
|
||||||
|
libretro_build_core emux
|
||||||
|
|
||||||
if [ $platform != "win" ]; then
|
if [ $platform != "win" ]; then
|
||||||
# Reasons for not compiling this on Windows yet -
|
# Reasons for not compiling this on Windows yet -
|
||||||
# (Windows) - Doesn't work properly
|
# (Windows) - Doesn't work properly
|
||||||
@ -274,6 +266,7 @@ build_default_cores() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
build_libretro_test
|
build_libretro_test
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user