aboutsummaryrefslogtreecommitdiff
path: root/dep
diff options
context:
space:
mode:
authorlee <leelf_00@126.com>2024-03-27 17:50:07 +0800
committerGitHub <noreply@github.com>2024-03-27 10:50:07 +0100
commit370685457e83c9657c1337ea5a2dc2f07e01af62 (patch)
treec48a057c5b0c286793cd9c8cb57f0584c56cd2c6 /dep
parent6a54dc5a34665e54937d1300e73a087b5938c1ab (diff)
Build: Fix Linux aarch64 GCC build (#29831)
Diffstat (limited to 'dep')
-rw-r--r--dep/argon2/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/dep/argon2/CMakeLists.txt b/dep/argon2/CMakeLists.txt
index ad1682088eb..f503afaa6d9 100644
--- a/dep/argon2/CMakeLists.txt
+++ b/dep/argon2/CMakeLists.txt
@@ -12,10 +12,10 @@ file(GLOB_RECURSE sources *.c)
if(TRINITY_SYSTEM_PROCESSOR MATCHES "x86|amd64")
list(REMOVE_ITEM sources
- ${CMAKE_CURRENT_SOURCE_DIR}/argon2/opt.c)
+ ${CMAKE_CURRENT_SOURCE_DIR}/argon2/ref.c)
else()
list(REMOVE_ITEM sources
- ${CMAKE_CURRENT_SOURCE_DIR}/argon2/ref.c)
+ ${CMAKE_CURRENT_SOURCE_DIR}/argon2/opt.c)
endif()
add_library(argon2 STATIC