Fix typo
This commit is contained in:
@@ -191,7 +191,7 @@ else()
|
|||||||
string(FIND "${UC_COMPILER_MACRO}" "__arm__" UC_RET)
|
string(FIND "${UC_COMPILER_MACRO}" "__arm__" UC_RET)
|
||||||
if(${UC_RET} GREATER_EQUAL "0")
|
if(${UC_RET} GREATER_EQUAL "0")
|
||||||
set(UNICORN_TARGET_ARCH "arm")
|
set(UNICORN_TARGET_ARCH "arm")
|
||||||
set(UNICORN_CFLAGS "${UNICORN_CFLAGS} -latomic")
|
set(UNICORN_CFLAGS ${UNICORN_CFLAGS} -latomic)
|
||||||
break()
|
break()
|
||||||
endif()
|
endif()
|
||||||
string(FIND "${UC_COMPILER_MACRO}" "__aarch64__" UC_RET)
|
string(FIND "${UC_COMPILER_MACRO}" "__aarch64__" UC_RET)
|
||||||
@@ -222,7 +222,7 @@ else()
|
|||||||
string(FIND "${UC_COMPILER_MACRO}" "__riscv" UC_RET)
|
string(FIND "${UC_COMPILER_MACRO}" "__riscv" UC_RET)
|
||||||
if(${UC_RET} GREATER_EQUAL "0")
|
if(${UC_RET} GREATER_EQUAL "0")
|
||||||
set(UNICORN_TARGET_ARCH "riscv")
|
set(UNICORN_TARGET_ARCH "riscv")
|
||||||
set(UNICORN_CFLAGS "${UNICORN_CFLAGS} -latomic")
|
set(UNICORN_CFLAGS ${UNICORN_CFLAGS} -latomic)
|
||||||
break()
|
break()
|
||||||
endif()
|
endif()
|
||||||
string(FIND "${UC_COMPILER_MACRO}" "__s390__" UC_RET)
|
string(FIND "${UC_COMPILER_MACRO}" "__s390__" UC_RET)
|
||||||
|
|||||||
Reference in New Issue
Block a user