From d4c53eed012225deea49dff983c24ee69cca45ce Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Mon, 17 Mar 2014 11:36:27 -0500 Subject: [PATCH] Fix arch detection on x86. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f0ea4e87e3..e350e62252 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -164,6 +164,7 @@ elseif(${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64") set(_M_GENERIC 1) add_definitions(-D_M_GENERIC=1) else() + message("Warning! Building generic build!") set(_M_GENERIC 1) add_definitions(-D_M_GENERIC=1) endif()