Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ET-VK][EZ] Fix Android test linkage #2319

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backends/vulkan/targets.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ def define_common_targets():
# therefore link_whole must be True to make sure unused symbols are not discarded.
# @lint-ignore BUCKLINT: Avoid `link_whole=True`
link_whole = True,
# Define an soname that can be used for dynamic loading in Java, Python, etc.
soname = "libvulkan_graph_runtime.$(ext)",
)

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