Skip to content

Commit

Permalink
Disable the avoid_dll_lock for now
Browse files Browse the repository at this point in the history
  • Loading branch information
malkia committed Jun 17, 2024
1 parent 3c3c14e commit fabd735
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions dll_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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
})

Expand Down Expand Up @@ -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"]
#)

0 comments on commit fabd735

Please sign in to comment.