Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin Buckley <calvin@cmpct.info>2018-03-04 18:01:44 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2018-03-05 19:03:42 +0300
commitb74818a35bf99096eea7ca97a72cd2d29dfb52de (patch)
treebc5e0afcdb9cda972a9b6b999116d1b4a658583c
parent2ba8564f8b677a338bd84a41d5817f6399861031 (diff)
Get BTLS build system to recognize PPC
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2ba98c0d..c81269a4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -166,6 +166,8 @@ elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "aarch64")
set(ARCH "aarch64")
elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "s390x")
set(ARCH "s390x")
+elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "powerpc")
+ set(ARCH "powerpc")
else()
message(FATAL_ERROR "Unknown processor:" ${CMAKE_SYSTEM_PROCESSOR})
endif()