diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-01-24 13:12:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 12:12:05 +0000 |
commit | af6652fc098fee10cdf4d2ad67648e7d813f1ec8 (patch) | |
tree | 40330642a1c62b28d8b4622dba6672c96954d825 /python/servo/platform/macos.py | |
parent | eb95703325aeb48d5f56a8da5b258bad608dd632 (diff) | |
download | servo-af6652fc098fee10cdf4d2ad67648e7d813f1ec8.tar.gz servo-af6652fc098fee10cdf4d2ad67648e7d813f1ec8.zip |
tests: Add GStreamer library directory to DYLD_LIBRARY_PATH (#31163)
This fixes an issue where the dylib for harfbuzz cannot be found when
running unit tests on some systems, because unit tests don't get their
rpaths adjusted during build. This is quite likely an issue with dylib
dependency management. We just need a bit more exploration of how this
is traditionally handled.
Diffstat (limited to 'python/servo/platform/macos.py')
-rw-r--r-- | python/servo/platform/macos.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/python/servo/platform/macos.py b/python/servo/platform/macos.py index 73708af6446..eeb2ee26c1c 100644 --- a/python/servo/platform/macos.py +++ b/python/servo/platform/macos.py @@ -26,9 +26,6 @@ class MacOS(Base): super().__init__(*args, **kwargs) self.is_macos = True - def library_path_variable_name(self): - return "DYLD_LIBRARY_PATH" - def gstreamer_root(self, cross_compilation_target: Optional[str]) -> Optional[str]: # We do not support building with gstreamer while cross-compiling on MacOS. if cross_compilation_target or not os.path.exists(GSTREAMER_ROOT): |