From 289adf87acc377a5475c7b629e06f612bdafa15c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 23 Oct 2018 12:24:40 -0400 Subject: [PATCH] CMakeLists: Remove EMU_ARCH_BITS definition This was only ever used by the now-removed memory_util functions. Also, given we don't plan to support 32-bit architectures, this is just a leftover from citra at this point. --- CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e98b557e3..f6a67950d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -178,10 +178,6 @@ endif() set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$:_DEBUG> $<$>:NDEBUG>) - -math(EXPR EMU_ARCH_BITS ${CMAKE_SIZEOF_VOID_P}*8) -add_definitions(-DEMU_ARCH_BITS=${EMU_ARCH_BITS}) - # System imported libraries # ======================