Skip to content

Commit e5c2853

Browse files
jorgep31415facebook-github-bot
authored andcommitted
Fix Android test linkage (#2319)
Summary: bypass-github-export-checks Pull Request resolved: #2319 In #2305, I added the `soname = "libvulkan_graph_runtime.$(ext)"` to the wrong library. Noob mistake. Also, I'd forgotten to remove an unneeded dependency. Reviewed By: SS-JIA Differential Revision: D54688153 fbshipit-source-id: 67a1316c76180030d4ae5225f16f01dcc750220a
1 parent 0b6add8 commit e5c2853

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)