diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-07-09 14:53:14 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-07-09 14:56:20 +0100 |
| commit | 86234921506944dddab4e2f5edf96bf747be6c73 (patch) | |
| tree | 9282b73de3c683a530f95a5d8f075d761143994f | |
| parent | 2cd4d7dd2088f586857c4b158a62244a09dd010a (diff) | |
| download | monzero-core-86234921506944dddab4e2f5edf96bf747be6c73.tar.gz monzero-core-86234921506944dddab4e2f5edf96bf747be6c73.tar.xz monzero-core-86234921506944dddab4e2f5edf96bf747be6c73.zip | |
Interpret x86_64 as x86-64 for architecture
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 805b42a79..b52ea8f41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -211,7 +211,11 @@ else() if(ARCH STREQUAL "default") set(ARCH_FLAG "") else() - set(ARCH_FLAG "-march=${ARCH}") + if(ARCH STREQUAL "x86_64") + set(ARCH_FLAG "-march=x86-64") + else() + set(ARCH_FLAG "-march=${ARCH}") + endif() endif() set(WARNINGS "-Wall -Wextra -Wpointer-arith -Wundef -Wvla -Wwrite-strings -Wno-error=extra -Wno-error=deprecated-declarations -Wno-error=sign-compare -Wno-error=strict-aliasing -Wno-error=type-limits -Wno-unused-parameter -Wno-error=unused-variable -Wno-error=undef -Wno-error=uninitialized") if(CMAKE_C_COMPILER_ID STREQUAL "Clang") |
