From d1a9c1b6298c0ba010755444b2a0f99c06c2f391 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Tue, 21 May 2024 15:15:04 +0200 Subject: [PATCH] Remove `use_allocator_shim` It's an option of `partition_allocator` which we disabled for all architectures. --- steps/05-configure.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/steps/05-configure.sh b/steps/05-configure.sh index 0e6f1371..778bf1ba 100755 --- a/steps/05-configure.sh +++ b/steps/05-configure.sh @@ -38,11 +38,9 @@ mkdir -p "$BUILD" echo "clang_use_chrome_plugins = false" ;; linux) - echo 'use_allocator_shim = false' echo "clang_use_chrome_plugins = false" ;; mac) - echo 'use_allocator_shim = false' echo 'mac_deployment_target = "10.13.0"' echo "clang_use_chrome_plugins = false" ;;