Merge pull request #1124 from martin-frbg/c_check-ppc

Update c_check.cmake to label ppc64 as power ARCH
This commit is contained in:
Martin Kroeker
2017-03-10 12:58:38 +01:00
committed by GitHub

View File

@@ -73,6 +73,10 @@ if (${ARCH} STREQUAL "X86")
set(ARCH x86)
endif ()
if (${ARCH} MATCHES "ppc")
set(ARCH power)
endif ()
set(COMPILER_ID ${CMAKE_CXX_COMPILER_ID})
if (${COMPILER_ID} STREQUAL "GNU")
set(COMPILER_ID "GCC")