From fbac0d5692c5343dd163ba289f80d167dd8582c7 Mon Sep 17 00:00:00 2001 From: neonloop Date: Sun, 14 Mar 2021 00:03:40 +0000 Subject: Initial trimui s support --- configure | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) (limited to 'configure') 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 -- cgit v1.2.3