mirror of
https://github.com/libretro/libretro-super
synced 2025-04-18 11:42:19 +00:00
Simplify some rules
This commit is contained in:
parent
548725d8e2
commit
6a41bbf277
@ -111,7 +111,7 @@ build_default_cores_little_endian_only() {
|
|||||||
libretro_build_core prosystem
|
libretro_build_core prosystem
|
||||||
}
|
}
|
||||||
|
|
||||||
# These are C++11 cores - not supported by these targets
|
# These are C++11 cores
|
||||||
|
|
||||||
build_default_cores_cpp11() {
|
build_default_cores_cpp11() {
|
||||||
libretro_build_core dinothawr
|
libretro_build_core dinothawr
|
||||||
@ -202,11 +202,9 @@ build_default_cores() {
|
|||||||
# Excluded for performance reasons
|
# Excluded for performance reasons
|
||||||
libretro_build_core mednafen_pcfx
|
libretro_build_core mednafen_pcfx
|
||||||
libretro_build_core mednafen_psx
|
libretro_build_core mednafen_psx
|
||||||
fi
|
if [ $platform != "qnx" ]; then
|
||||||
|
libretro_build_core mednafen_snes
|
||||||
if [ $platform != "qnx" ] && [ $platform != "psp1" ] && [ $platform != "ngc" ] && [ $platform != "wii" ] && [ $platform != "ps3" ] && [ $platform != "sncps3" ]; then
|
fi
|
||||||
# Compilation and/or perforamnce issues
|
|
||||||
libretro_build_core mednafen_snes
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
libretro_build_core mednafen_supergrafx
|
libretro_build_core mednafen_supergrafx
|
||||||
@ -255,24 +253,24 @@ build_default_cores() {
|
|||||||
|
|
||||||
if [ $platform != "qnx" ] && [ $platform != "ps3" ] && [ $platform != "sncps3" ] && [ $platform != "psp1" ] && [ $platform != "ngc" ] && [ $platform != "wii" ]; then
|
if [ $platform != "qnx" ] && [ $platform != "ps3" ] && [ $platform != "sncps3" ] && [ $platform != "psp1" ] && [ $platform != "ngc" ] && [ $platform != "wii" ]; then
|
||||||
build_default_cores_cpp11
|
build_default_cores_cpp11
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $platform != "win" ] && [ $platform != "qnx" ] && [ $platform != "psp1" ] && [ $platform != "ngc" ] && [ $platform != "wii" ] && [ $platform != "ps3" ] && [ $platform != "sncps3" ]; 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
|
||||||
# (QNX) - Compilation issues
|
# (QNX) - Compilation issues
|
||||||
# (PSP1) - Performance/compilation issues
|
# (PSP1) - Performance/compilation issues
|
||||||
# (Wii) - Performance/compilation issues
|
# (Wii) - Performance/compilation issues
|
||||||
# (PS3) - Performance/compilation issues
|
# (PS3) - Performance/compilation issues
|
||||||
libretro_build_core pcsx_rearmed
|
libretro_build_core pcsx_rearmed
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $platform != "ios" ] && [ $platform != "qnx" ] && [ $platform != "psp1" ] && [ $platform != "ps3" ] && [ $platform != "sncps3" ] && [ $platform != "ngc" ] && [ $platform != "wii" ]; then
|
if [ $platform != "ios" ]; then
|
||||||
# Would need ffmpeg libraries baked in
|
# Would need ffmpeg libraries baked in
|
||||||
libretro_build_core ffmpeg
|
libretro_build_core ffmpeg
|
||||||
libretro_build_core ppsspp
|
libretro_build_core ppsspp
|
||||||
|
|
||||||
libretro_build_core bnes
|
libretro_build_core bnes
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
build_libretro_test
|
build_libretro_test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user