aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Chu <hyc@symas.com>2016-01-07 02:55:13 +0000
committerHoward Chu <hyc@symas.com>2016-01-11 23:14:06 +0000
commit94de39fbadbfed1ab758d5b894a780372c1387e8 (patch)
tree2b94962a9984a6033b4f3e2da67ace5a763d1988
parentMerge branch 'LMDB-tweaks' (diff)
downloadmonero-94de39fbadbfed1ab758d5b894a780372c1387e8.tar.xz
Tweak arm6 flags
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ae2a19c01..64b9f3e62 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -284,7 +284,7 @@ if(MSVC)
else()
set(ARCH native CACHE STRING "CPU to build for: -march value or default")
# -march=armv7-a conflicts with -mcpu=cortex-a7
- if(ARCH STREQUAL "default" OR ARM7)
+ if(ARCH STREQUAL "default" OR ARM7 OR ARM6)
set(ARCH_FLAG "")
else()
if(ARCH STREQUAL "x86_64")