fixed: Bug #3939 - Compile fails on ARM (Raspberry Pi) because of cryptopp/Crypto++ lib

This commit is contained in:
Nick Bolton 2014-03-20 19:24:24 +00:00
parent 2954fd6690
commit 10e974970e
1 changed files with 5 additions and 1 deletions

View File

@ -80,7 +80,11 @@ if (UNIX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-tautological-compare")
endif()
else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native")
set(CRYPTOPP_ARCH "native")
if ("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "^arm.*")
set(CRYPTOPP_ARCH "armv6zk")
endif()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=${CRYPTOPP_ARCH}")
endif()
endif()