Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wtdcode committed Dec 28, 2023
1 parent 55560a2 commit f389666
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ else()
string(FIND "${UC_COMPILER_MACRO}" "__arm__" UC_RET)
if(${UC_RET} GREATER_EQUAL "0")
set(UNICORN_TARGET_ARCH "arm")
set(UNICORN_CFLAGS "${UNICORN_CFLAGS} -latomic")
set(UNICORN_CFLAGS ${UNICORN_CFLAGS} -latomic)
break()
endif()
string(FIND "${UC_COMPILER_MACRO}" "__aarch64__" UC_RET)
Expand Down Expand Up @@ -222,7 +222,7 @@ else()
string(FIND "${UC_COMPILER_MACRO}" "__riscv" UC_RET)
if(${UC_RET} GREATER_EQUAL "0")
set(UNICORN_TARGET_ARCH "riscv")
set(UNICORN_CFLAGS "${UNICORN_CFLAGS} -latomic")
set(UNICORN_CFLAGS ${UNICORN_CFLAGS} -latomic)
break()
endif()
string(FIND "${UC_COMPILER_MACRO}" "__s390__" UC_RET)
Expand Down

0 comments on commit f389666

Please sign in to comment.