Skip to content

Commit ed75a22

Browse files
committed
Fix crashes in combination with older MSVC redistributable versions
Since the switch of Windows 2022 GitHub actions runner image to version 20240603.1.1 the Visual Studio version was bumped to 17.10.34928.147. This results in MSVC version 19.40.33811.0 being used at build time. Combining this with e.g. the MSVC redistributable version 14.34.31938.0 results in segfaults when calling std::mutex::lock. See also: https://developercommunity.visualstudio.com/t/Invalid-code-generation-in-release-1940/10678572
1 parent 7b48cb2 commit ed75a22

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,9 @@ if(OS_WINDOWS)
345345
if(MSVC)
346346
target_compile_options(${LIB_NAME} PUBLIC /MP /d2FH4- /wd4267 /wd4267
347347
/bigobj)
348+
349+
# Workaround for MSVC incompatibility in CI environment
350+
add_compile_definitions(${target_name} _DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR)
348351
endif()
349352
target_sources(${LIB_NAME} PRIVATE lib/win/advanced-scene-switcher-win.cpp)
350353
add_definitions(-D_WEBSOCKETPP_CPP11_STL_)

0 commit comments

Comments
 (0)