-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix precompiled lib symlinks missing in runfiles of cc_shared_library
26d882f was intended to remove unnecessary files from runfiles However it also removes (some?) required symlinks from runfiles. E.g. libtensorflow_cc.so.2.13.0 is present in the runfiles but `libtensorflow_cc.so.2` is not leading to failures as programs are linked to the latter. See tensorflow/tensorflow#60326 Use the same logic used in other places preferring `resolved_symlink_dynamic_library` over `dynamic_library`. Closes #19378. PiperOrigin-RevId: 567526683 Change-Id: Ie8768224a7adc3f3021bf00f68bd668d617b44e1
- Loading branch information
1 parent
70675b3
commit 04a0567
Showing
2 changed files
with
39 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters