Skip to content

Commit 2c5aaa0

Browse files
keithAnkur-0429
authored andcommitted
[bazel] Depend on full Utility library in lldb (llvm#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 b396d48 commit 2c5aaa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
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)