From 44bfe6048b469746e9095c08b66529eafb9f1066 Mon Sep 17 00:00:00 2001 From: Roberto Oliveira Date: Tue, 27 Jun 2017 17:06:01 +0000 Subject: [PATCH] enable monero build on ppc64le architecture Fix wrong flags for ppc64le: -maes - not avaiable -march - changed by -mcpu that does the same for powerpc --- CMakeLists.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8060f90..45745abe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -86,6 +86,10 @@ if (ARM_ID STREQUAL "aarch64" OR ARM_ID STREQUAL "arm64" OR ARM_ID STREQUAL "arm set(ARCH "armv8-a") endif() +if(ARCH_ID STREQUAL "ppc64le") + set(PPC64LE 1) +endif() + if(WIN32 OR ARM) set(OPT_FLAGS_RELEASE "-O2") else() @@ -386,6 +390,8 @@ else() message(STATUS "Building on ${CMAKE_SYSTEM_PROCESSOR} for ${ARCH}") if(ARCH STREQUAL "default") set(ARCH_FLAG "") + elseif(PPC64LE) + set(ARCH_FLAG "-mcpu=${ARCH}") else() set(ARCH_FLAG "-march=${ARCH}") endif() @@ -442,10 +448,12 @@ else() option(NO_AES "Explicitly disable AES support" ${NO_AES}) - if(NOT NO_AES AND NOT ARM) + if(NOT NO_AES AND NOT ARM AND NOT PPC64LE) message(STATUS "AES support enabled") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -maes") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -maes") + elseif(PPC64LE) + message(STATUS "AES support not available on ppc64le") elseif(ARM6) message(STATUS "AES support not available on ARMv6") elseif(ARM7)