소스 검색

fix arm64 build flag

Grant Limberg 1 주 전
부모
커밋
d3f1ec74ba
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      CMakeLists.txt

+ 1 - 1
CMakeLists.txt

@@ -20,7 +20,7 @@ if(CPU_ARCHITECTURE STREQUAL "x86_64")
         -DZT_USE_FAST_X64_ED25519=1
     )
 elseif(CPU_ARCHITECTURE STREQUAL "aarch64")
-    add_definitions(-DZT_ARCHITECTURE=4 -DZT_U-DZT_ARCH_ARM_HAS_NEON=1 -DZT_SSO_SUPPORTED=1)
+    add_definitions(-DZT_ARCHITECTURE=4 -DZT_ARCH_ARM_HAS_NEON=1 -DZT_SSO_SUPPORTED=1)
     add_compile_options(-march=armv8-a+crypto -mtune=generic -mstrict-align)
 endif()