From 5eb8876bacd2712f15b28f7f022bb64fa47f5fd7 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Fri, 19 Dec 2014 20:45:55 -0600 Subject: [PATCH] [AArch64] Removes ARMv8 as a generic target. Generic flag disables the ability to have backpatching supporting. Also compiles Dolphin with CRC instructions enabled. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2039279edc..6df8a5bcb0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -164,7 +164,7 @@ if(NOT ENABLE_GENERIC) set(_M_ARM 1) set(_M_ARM_64 1) add_definitions(-D_M_ARM=1 -D_M_ARM_64=1) - set(ENABLE_GENERIC 1) + add_definitions(-march=armv8-a+crc) else() set(ENABLE_GENERIC 1) endif()