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
|
||||
}
|
||||
|
||||
# These are C++11 cores - not supported by these targets
|
||||
# These are C++11 cores
|
||||
|
||||
build_default_cores_cpp11() {
|
||||
libretro_build_core dinothawr
|
||||
|
@ -202,12 +202,10 @@ build_default_cores() {
|
|||
# Excluded for performance reasons
|
||||
libretro_build_core mednafen_pcfx
|
||||
libretro_build_core mednafen_psx
|
||||
fi
|
||||
|
||||
if [ $platform != "qnx" ] && [ $platform != "psp1" ] && [ $platform != "ngc" ] && [ $platform != "wii" ] && [ $platform != "ps3" ] && [ $platform != "sncps3" ]; then
|
||||
# Compilation and/or perforamnce issues
|
||||
if [ $platform != "qnx" ]; then
|
||||
libretro_build_core mednafen_snes
|
||||
fi
|
||||
fi
|
||||
|
||||
libretro_build_core mednafen_supergrafx
|
||||
libretro_build_core mednafen_vb
|
||||
|
@ -255,9 +253,8 @@ build_default_cores() {
|
|||
|
||||
if [ $platform != "qnx" ] && [ $platform != "ps3" ] && [ $platform != "sncps3" ] && [ $platform != "psp1" ] && [ $platform != "ngc" ] && [ $platform != "wii" ]; then
|
||||
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 -
|
||||
# (Windows) - Doesn't work properly
|
||||
# (QNX) - Compilation issues
|
||||
|
@ -267,13 +264,14 @@ build_default_cores() {
|
|||
libretro_build_core pcsx_rearmed
|
||||
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
|
||||
libretro_build_core ffmpeg
|
||||
libretro_build_core ppsspp
|
||||
|
||||
libretro_build_core bnes
|
||||
fi
|
||||
fi
|
||||
|
||||
build_libretro_test
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue