From c498f51053e2f550a4ab4bee534b0ef80033a2b3 Mon Sep 17 00:00:00 2001 From: Milot Mirdita Date: Wed, 31 Jul 2024 13:25:07 +0900 Subject: [PATCH] Disable nedmalloc due to openmp crash in cygwin --- src/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 56715c63b..a84726da5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -131,9 +131,9 @@ else () endif () target_link_libraries(mmseqs-framework tinyexpr ${ZSTD_LIBRARIES} microtar) -if (CYGWIN) - target_link_libraries(mmseqs-framework nedmalloc) -endif () +# if (CYGWIN) +# target_link_libraries(mmseqs-framework nedmalloc) +# endif () if (EMSCRIPTEN) target_compile_definitions(mmseqs-framework PUBLIC -DHAVE_ZLIB=1 -DHAVE_BZLIB=1)