Skip to content

Commit

Permalink
Merge pull request #3241 from dnakamura/compiler_check
Browse files Browse the repository at this point in the history
Cmake: Remove bogus guard around building the jit
  • Loading branch information
pshipton committed Oct 11, 2018
2 parents 5b5a781 + bac0ada commit cdfa423
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cdfa423

Please sign in to comment.