From f19945121ed8054411c7da3ac8f6c039f91a9d9f Mon Sep 17 00:00:00 2001 From: momo5502 Date: Mon, 18 Nov 2024 16:57:51 +0100 Subject: [PATCH] Add hint comment --- cmake/compiler-env.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/compiler-env.cmake b/cmake/compiler-env.cmake index 055d49bc..a0eebc1e 100644 --- a/cmake/compiler-env.cmake +++ b/cmake/compiler-env.cmake @@ -102,6 +102,8 @@ momo_add_c_and_cxx_compile_options( endif() ########################################## +# Must be a dynamic runtime (/MD or /MDd) to enforce +# shared allocators between emulator and implementation set(CMAKE_MSVC_RUNTIME_LIBRARY MultiThreaded$<$:Debug>DLL)