From bac0adaf34087dc12e913db50103cb97e3c5b4ab Mon Sep 17 00:00:00 2001 From: Devin Nakamura Date: Thu, 11 Oct 2018 12:08:49 -0400 Subject: [PATCH] Cmake: Remove bogus guard around building the jit This particular check is a remenant from when hybrid uma/cmake builds could be run. Signed-off-by: Devin Nakamura --- runtime/CMakeLists.txt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 15b6c1d7e1d..c4077664920 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -398,12 +398,7 @@ if(J9VM_MODULE_THRTRACE) add_subdirectory(thrtrace) endif() if(J9VM_INTERP_NATIVE_SUPPORT) - if(OMR_HOST_ARCH STREQUAL "x86" OR OMR_HOST_ARCH STREQUAL "ppc") - #jit only does x86/ppc at the moment, and only with GCC - if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") - add_subdirectory(compiler) - endif() - endif() + add_subdirectory(compiler) endif() if(J9VM_MODULE_UTIL) add_subdirectory(util)