From a10a79dc7d5f53c66d2d74ffd710879752731837 Mon Sep 17 00:00:00 2001 From: Alexander Neben Date: Thu, 22 Jun 2023 17:52:27 +0000 Subject: [PATCH] SERVER-78304 Removed rdynamic from windows builds --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 62cde61228351..ca285f2907d92 100644 --- a/SConstruct +++ b/SConstruct @@ -2198,7 +2198,7 @@ elif use_libunwind == "auto": use_libunwind = can_use_libunwind # TODO SERVER-75120: Revert the special handling for arch when this ticket is complete -if not can_use_libunwind_arch: +if not can_use_libunwind_arch and env.TargetOSIs('linux'): env.Append(LINKFLAGS=['-rdynamic']) use_vendored_libunwind = use_libunwind and not use_system_libunwind