From fabd735c81a8b637a92e768e1b0ae56985731664 Mon Sep 17 00:00:00 2001 From: Dimiter 'malkia' Stanev Date: Mon, 17 Jun 2024 11:55:01 -0700 Subject: [PATCH] Disable the avoid_dll_lock for now --- dll_deps.bzl | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dll_deps.bzl b/dll_deps.bzl index 3e6faffd1b..289c31a002 100644 --- a/dll_deps.bzl +++ b/dll_deps.bzl @@ -22,7 +22,7 @@ def _filter_libs(deps): def dll_deps(deps): """ When building with --//:with_dll=true replaces the references to the api/sdk/exporters/ext static libraries with the single //:dll shared library """ return select({ - "//:with_dll_enabled": [":avoid_dll_lock"] + _filter_libs(deps), + "//:with_dll_enabled": ["//:dll"] + _filter_libs(deps), "//conditions:default": deps }) @@ -62,7 +62,8 @@ def avoid_dll_lock(): avoid_dll_lock() """ - native.cc_library( - name = "avoid_dll_lock", - deps = ["//:dll"] - ) + pass + #native.cc_library( + # name = "avoid_dll_lock", + # deps = ["//:dll"] + #)