X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=configure;h=39587aa4d0259951c83263f2054d44379318b88c;hb=825757532f4b9a30f25c491267d544e02730e2e8;hp=8ef59cedb85ca85fcd977d425db3b32c7c4a54bb;hpb=57467c77b7045642afd8de1679f1149acc9c1ab5;p=pcsx_rearmed.git diff --git a/configure b/configure index 8ef59ced..39587aa4 100755 --- a/configure +++ b/configure @@ -153,7 +153,6 @@ if [ "$show_help" = "yes" ]; then echo " --disable-neon enable/disable ARM NEON optimizations [guessed]" echo " --disable-dynarec disable dynamic recompiler" echo " (dynarec is only available and enabled on ARM)" - echo " --disable-icache-emu Disables the instruction cache emulation" echo "influential environment variables:" echo " CROSS_COMPILE CC CXX AS AR CFLAGS ASFLAGS LDFLAGS LDLIBS" exit 1 @@ -288,6 +287,12 @@ aarch64) builtin_gpu="neon" fi ;; +x86_64) + enable_dynarec="no" + if [ "x$builtin_gpu" = "x" ]; then + builtin_gpu="neon" + fi + ;; *) # dynarec only available on ARM enable_dynarec="no"