summaryrefslogtreecommitdiff
path: root/src/third_party/unwind/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/unwind/SConscript')
-rw-r--r--src/third_party/unwind/SConscript10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/third_party/unwind/SConscript b/src/third_party/unwind/SConscript
index 983478dd22a..adbd0114832 100644
--- a/src/third_party/unwind/SConscript
+++ b/src/third_party/unwind/SConscript
@@ -125,14 +125,4 @@ env.Append(
env.Library(
target='unwind',
source=env.File(unwind_sources, unwind_src_dir),
- # We don't want the shim_allocator hack to apply to this library, since
- # otherwise we would create a loop, since tcmalloc might use us. That should
- # be OK, unless libunwind had static initializers that invoked malloc.
- LIBDEPS_GLOBAL=[
- dep
- for dep in env.get('LIBDEPS_GLOBAL', [])
- if not dep.endswith('shim_allocator')
- ],
- # TODO: Remove when SERVER-48291 is merged into stable build tools
- DISABLE_ALLOCATOR_SHIM_INJECTION=True,
)