Revert "enable FastMemcpy properly"

This reverts commit 6e23901227.
This commit is contained in:
alesapin 2020-10-01 10:38:06 +03:00
parent 6e23901227
commit 38e50d1078
3 changed files with 4 additions and 6 deletions

View File

@ -369,12 +369,6 @@ endif ()
include(cmake/dbms_glob_sources.cmake)
if (${ENABLE_LIBRARIES} OR ${GLIBC_COMPATIBILITY})
option (ENABLE_FASTMEMCPY "Enable FastMemcpy library (only internal)" ON)
else ()
option (ENABLE_FASTMEMCPY "Enable FastMemcpy library (only internal)" OFF)
endif ()
if (OS_LINUX OR OS_ANDROID)
include(cmake/linux/default_libs.cmake)
elseif (OS_DARWIN)

View File

@ -1,4 +1,6 @@
if (GLIBC_COMPATIBILITY)
set (ENABLE_FASTMEMCPY ON)
enable_language(ASM)
include(CheckIncludeFile)

View File

@ -1,3 +1,5 @@
option (ENABLE_FASTMEMCPY "Enable FastMemcpy library (only internal)" ${ENABLE_LIBRARIES})
if (NOT OS_LINUX OR ARCH_AARCH64)
set (ENABLE_FASTMEMCPY OFF)
endif ()