-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dylib id of libneuropod.so on macOS (#469)
### Summary: Fixes #468 This change modifies the dylib id of `libneuropod.so` from a bazel internal path (e.g. `bazel-out/darwin-fastbuild/bin/neuropod/libneuropod.so`) to a generic one (`@rpath/libneuropod.so`). Previously, we were modifying all the binaries that depended on `bazel-out/.../libneuropod.so` to depend on `@rpath/libneuropod.so` instead. This required logic in multiple places and more importantly didn't fix the issue for external code that links against `libneuropod.so` By changing `libneuropod.so` itself, we can avoid changing all the binaries and libraries that depend on it. ### Test Plan: CI
- Loading branch information
1 parent
97d60d6
commit c15727e
Showing
3 changed files
with
17 additions
and
20 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
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