From 3e5dcb34cf8b85a3626cecd2f192061350b7ece6 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Fri, 30 Oct 2020 11:02:10 -0400 Subject: [PATCH] turn building shared libraries off by default because no one uses this right now --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e83955ca1..dac39e848 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ option(USE_AVX2 "enable avx2 code" OFF) option(USE_NETNS "enable networking namespace support. Linux only" OFF) option(NATIVE_BUILD "optimise for host system and FPU" ON) option(EMBEDDED_CFG "optimise for older hardware or embedded systems" OFF) -option(BUILD_SHARED_LIBS "build lokinet libraries as shared libraries instead of static" ON) +option(BUILD_SHARED_LIBS "build lokinet libraries as shared libraries instead of static" OFF) option(SHADOW "use shadow testing framework. linux only" OFF) option(XSAN "use sanitiser, if your system has it (requires -DCMAKE_BUILD_TYPE=Debug)" OFF) option(WITH_JEMALLOC "use jemalloc as allocator" OFF)