Merge pull request #1903 from rayklaus/linux-link-error

修复Linux arm64下链接问题
This commit is contained in:
Zhi Guan
2026-06-30 10:18:48 +08:00
committed by GitHub

View File

@@ -165,7 +165,11 @@ option(ENABLE_GHASH "Enable standalone GHASH command and test" ON)
option(ENABLE_SKF "Enable SKF module" ON)
option(ENABLE_SDF "Enable SDF module" ON)
option(ENABLE_ASM_UNDERSCORE_PREFIX "Add prefix `_` to assembly symbols" ON)
if (APPLE)
option(ENABLE_ASM_UNDERSCORE_PREFIX "Add prefix `_` to assembly symbols" ON)
else()
option(ENABLE_ASM_UNDERSCORE_PREFIX "Add prefix `_` to assembly symbols" OFF)
endif()
option(ENABLE_TLS "Enable TLS and TLCP protocol support" ON)
option(ENABLE_QUIC "Enable QUIC support" ON)