diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2020-11-26 10:29:19 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-11-26 17:28:35 +0000 |
commit | 710aa34bd1bb9ff1c13a41737c86e636e57f0a88 (patch) | |
tree | d7e6b8c286968946f8a2c4974d4da3c822a78ca2 /src/third_party/unwind | |
parent | 37f35e3c80096b5d55b482b83bfb3cf7af16852f (diff) | |
download | mongo-710aa34bd1bb9ff1c13a41737c86e636e57f0a88.tar.gz |
Revert "SERVER-48291 Ensure runtime is dynamically linked in dynamic builds"
This reverts commit 2a0e76082be0f2aca82830bcaf91f6d737b842ac.
Diffstat (limited to 'src/third_party/unwind')
-rw-r--r-- | src/third_party/unwind/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/unwind/SConscript b/src/third_party/unwind/SConscript index 5ea497b0c53..983478dd22a 100644 --- a/src/third_party/unwind/SConscript +++ b/src/third_party/unwind/SConscript @@ -131,7 +131,7 @@ env.Library( LIBDEPS_GLOBAL=[ dep for dep in env.get('LIBDEPS_GLOBAL', []) - if dep and not (dep.endswith('shim_allocator') or dep.endswith('shim_cxx')) + if not dep.endswith('shim_allocator') ], # TODO: Remove when SERVER-48291 is merged into stable build tools DISABLE_ALLOCATOR_SHIM_INJECTION=True, |