Skip to content

Commit 42622c7

Browse files
authored
[bazel] Depend on full Utility library in lldb (#137265)
Since 6493345 the utility library is needed by the driver. Since liblldb's exports are limited with -exports_symbols_list on macOS, some symbols like `__ZN12SelectHelper10FDSetWriteEi` are not exported from liblldb and therefore cause linker failures on macOS only. In the cmake the driver now depends on the full utility library, even though that leads to some duplication of symbols, so it should be safe for us to do in bazel as well.
1 parent 5b16941 commit 42622c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/bazel/llvm-project-overlay/lldb/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ cc_binary(
830830
deps = [
831831
":APIHeaders",
832832
":Host",
833-
":UtilityHeaders",
833+
":Utility",
834834
":liblldb.wrapper",
835835
":lldb_options_inc_gen",
836836
"//llvm:Option",

0 commit comments

Comments
 (0)