aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorneonloop2021-03-14 00:03:40 +0000
committerneonloop2021-03-14 00:03:40 +0000
commitfbac0d5692c5343dd163ba289f80d167dd8582c7 (patch)
tree8a41da36bf49881c35118cdd7e88812ea47d3b47 /configure
parente3e1b865f7c06f57918b97f7293b5b2959fb7b7d (diff)
downloadpcsx_rearmed-fbac0d5692c5343dd163ba289f80d167dd8582c7.tar.gz
pcsx_rearmed-fbac0d5692c5343dd163ba289f80d167dd8582c7.tar.bz2
pcsx_rearmed-fbac0d5692c5343dd163ba289f80d167dd8582c7.zip
Initial trimui s support
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure21
1 files changed, 18 insertions, 3 deletions
diff --git a/configure b/configure
index f3a50d1..67aefad 100755
--- a/configure
+++ b/configure
@@ -37,7 +37,7 @@ check_define_val()
# setting options to "yes" or "no" will make that choice default,
# "" means "autodetect".
-platform_list="generic pandora maemo caanoo libretro"
+platform_list="generic pandora maemo caanoo libretro trimui"
platform="generic"
builtin_gpu_list="peops unai neon"
builtin_gpu=""
@@ -107,6 +107,18 @@ set_platform()
optimize_arm926ej="yes"
need_warm="yes"
;;
+ trimui)
+ ARCH="arm"
+ sound_drivers="sdl"
+ have_tslib="no"
+ have_chd="yes"
+ ram_fixed="yes"
+ drc_cache_base="no" # usually works, sometimes not
+ optimize_arm926ej="yes"
+ need_warm="no"
+ have_arm_neon="no"
+ plugins=""
+ ;;
libretro)
sound_drivers="libretro"
need_libpicofe="no"
@@ -569,7 +581,7 @@ if [ "$have_gles" = "yes" ]; then
echo "LDLIBS_GLES = $LDLIBS_GLES" >> $config_mak
fi
if [ "$enable_dynarec" = "yes" ]; then
- echo "USE_DYNAREC = 1" >> $config_mak
+ echo "DYNAREC = ari64" >> $config_mak
fi
if [ "$drc_cache_base" = "yes" ]; then
echo "DRC_CACHE_BASE = 1" >> $config_mak
@@ -577,8 +589,11 @@ fi
if [ "$have_c64x_dsp" = "yes" ]; then
echo "HAVE_C64_TOOLS = 1" >> $config_mak
fi
+if [ "$have_chd" = "yes" ]; then
+ echo "HAVE_CHD = 1" >> $config_mak
+fi
# use pandora's skin (for now)
-test -e skin || ln -s frontend/pandora/skin skin
+# test -e skin || ln -s frontend/pandora/skin skin
# vim:shiftwidth=2:expandtab