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:
commit
12e476f7a2
|
@ -73,6 +73,10 @@ if (${ARCH} STREQUAL "X86")
|
||||||
set(ARCH x86)
|
set(ARCH x86)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
if (${ARCH} MATCHES "ppc")
|
||||||
|
set(ARCH power)
|
||||||
|
endif ()
|
||||||
|
|
||||||
set(COMPILER_ID ${CMAKE_CXX_COMPILER_ID})
|
set(COMPILER_ID ${CMAKE_CXX_COMPILER_ID})
|
||||||
if (${COMPILER_ID} STREQUAL "GNU")
|
if (${COMPILER_ID} STREQUAL "GNU")
|
||||||
set(COMPILER_ID "GCC")
|
set(COMPILER_ID "GCC")
|
||||||
|
|
Loading…
Reference in New Issue