compilation fixes for debug mode

This commit is contained in:
Konstantinos Margaritis
2021-07-04 14:46:50 +03:00
parent 176fa17970
commit 472b119e35
2 changed files with 27 additions and 27 deletions

View File

@@ -761,11 +761,11 @@ if (NOT OPTIMISE)
if (ARCH_IA32 OR ARCH_X86_64)
set (hs_exec_SRCS
${hs_exec_SRCS}
src/util/simd/arch/x86/impl.cpp)
src/util/supervector/arch/x86/impl.cpp)
elseif (ARCH_ARM32 OR ARCH_AARCH64)
set (hs_exec_SRCS
${hs_exec_SRCS}
src/util/simd/arch/arm/impl.cpp)
src/util/supervector/arch/arm/impl.cpp)
endif ()
endif()