Skip to content

Commit b79697b

Browse files
committed
[ET-VK][EZ] Fix Android test linkage
In #2305, I added the `soname = "libvulkan_graph_runtime.$(ext)"` to the wrong library. Noob mistake. Also, removed an unneeded dependency. Differential Revision: [D54688153](https://our.internmc.facebook.com/intern/diff/D54688153/) ghstack-source-id: 217969105 Pull Request resolved: #2319
1 parent 0b6add8 commit b79697b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backends/vulkan/targets.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ def define_common_targets():
6060
# therefore link_whole must be True to make sure unused symbols are not discarded.
6161
# @lint-ignore BUCKLINT: Avoid `link_whole=True`
6262
link_whole = True,
63+
# Define an soname that can be used for dynamic loading in Java, Python, etc.
64+
soname = "libvulkan_graph_runtime.$(ext)",
6365
)
6466

6567
runtime.cxx_library(
@@ -85,6 +87,4 @@ def define_common_targets():
8587
# VulkanBackend.cpp needs to compile with executor as whole
8688
# @lint-ignore BUCKLINT: Avoid `link_whole=True` (https://fburl.com/avoid-link-whole)
8789
link_whole = True,
88-
# Define an soname that can be used for dynamic loading in Java, Python, etc.
89-
soname = "libvulkan_graph_runtime.$(ext)",
9090
)

0 commit comments

Comments
 (0)