X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=configure;h=00511bd15311281129de5e139c83b9b39e110ef5;hb=96751f36c7867567d4d8c612c78f235392d1f243;hp=4aed26ae0151833433e3b0da2e0c4497244d1bee;hpb=dd4d5a35678c8ff7f9a7c0ac42be354671534f96;p=pcsx_rearmed.git diff --git a/configure b/configure index 4aed26ae..00511bd1 100755 --- a/configure +++ b/configure @@ -170,6 +170,11 @@ if [ "$ARCH" = "arm" ]; then echo "$ASFLAGS" | grep -q -- '-mfloat-abi=' || ASFLAGS="$ASFLAGS -mfloat-abi=softfp" fi + # must disable -mthumb as recompiler can't handle it + if check_define __thumb__; then + CFLAGS="$CFLAGS -mno-thumb" + fi + if [ "$have_armv7" = "yes" ]; then ASFLAGS="$ASFLAGS --defsym HAVE_ARMV7=1" else @@ -313,4 +318,7 @@ if [ "$drc_cache_base" = "yes" ]; then echo "DRC_CACHE_BASE = 1" >> $config_mak fi +# use pandora's skin (for now) +test -e skin || ln -s frontend/pandora/skin skin + # vim:shiftwidth=2:expandtab