Skip to content

Commit

Permalink
backend: Add runner libs to fix embedded GStreamer not finding them (#…
Browse files Browse the repository at this point in the history
…2525)

Add runner libs to fix embedded GStreamer not finding them
  • Loading branch information
Kinsteen authored Jan 14, 2023
1 parent 4cf55b8 commit d8d6290
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bottles/backend/wine/winecommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ def get_env(self, environment: dict = None, return_steam_env: bool = False, retu
runner_path = ManagerUtils.get_runner_path(config.get("Runner"))
if arch == "win64":
runner_libs = [
"lib",
"lib64",
"lib/wine/x86_64-unix",
"lib32/wine/x86_64-unix",
"lib64/wine/x86_64-unix",
Expand All @@ -244,6 +246,7 @@ def get_env(self, environment: dict = None, return_steam_env: bool = False, retu
]
else:
runner_libs = [
"lib",
"lib/wine/i386-unix",
"lib32/wine/i386-unix",
"lib64/wine/i386-unix"
Expand Down
1 change: 1 addition & 0 deletions com.usebottles.bottles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ finish-args:
- --system-talk-name=org.freedesktop.UDisks2
- --env=LD_LIBRARY_PATH=/app/lib:/app/lib32
- --env=PATH=/app/bin:/app/utils/bin:/usr/bin:/usr/lib/extensions/vulkan/MangoHud/bin/:/usr/bin:/usr/lib/extensions/vulkan/OBSVkCapture/bin/
- --env=GST_PLUGIN_SYSTEM_PATH=/app/lib/gstreamer-1.0:/usr/lib/x86_64-linux-gnu/gstreamer-1.0:/app/lib32/gstreamer-1.0:/usr/lib/i386-linux-gnu/gstreamer-1.0
- --require-version=1.1.2

inherit-extensions:
Expand Down

0 comments on commit d8d6290

Please sign in to comment.