mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Fix test for 'ARM_ID' as caught by @radfish in #1088
This commit is contained in:
parent
68e6678ab7
commit
b8fb9d1919
1 changed files with 3 additions and 3 deletions
|
@ -65,10 +65,10 @@ else()
|
|||
set(ARCH_ID "${ARCH}")
|
||||
endif()
|
||||
string(TOLOWER "${ARCH_ID}" ARM_ID)
|
||||
string(SUBSTRING "${ARCH_ID}" 0 3 ARM_TEST)
|
||||
string(SUBSTRING "${ARM_ID}" 0 3 ARM_TEST)
|
||||
if (ARM_TEST STREQUAL "arm")
|
||||
set(ARM 1)
|
||||
string(SUBSTRING "${ARCH_ID}" 0 5 ARM_TEST)
|
||||
string(SUBSTRING "${ARM_ID}" 0 5 ARM_TEST)
|
||||
if (ARM_TEST STREQUAL "armv6")
|
||||
set(ARM6 1)
|
||||
endif()
|
||||
|
@ -77,7 +77,7 @@ if (ARM_TEST STREQUAL "arm")
|
|||
endif()
|
||||
endif()
|
||||
|
||||
if (ARCH_ID STREQUAL "aarch64")
|
||||
if (ARM_ID STREQUAL "aarch64")
|
||||
set(ARM 1)
|
||||
set(ARM8 1)
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue