summaryrefslogtreecommitdiff
path: root/www/iridium/files/patch-v8_tools_run.py
blob: 64e3e3c80f0eb06eca902dd2395addcd66d16dae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- v8/tools/run.py.orig	2025-12-10 15:04:57 UTC
+++ v8/tools/run.py
@@ -21,7 +21,7 @@ if cmd and cmd[0] == '--redirect-stdout':
   kwargs = dict(stdout=subprocess.PIPE)
   cmd = cmd[2:]
 
-process = subprocess.Popen(cmd, **kwargs)
+process = subprocess.Popen(cmd, env={"LD_LIBRARY_PATH":"${WRKSRC}/out/Release"}, **kwargs)
 stdout, _ = process.communicate()
 if stdout_file:
   with stdout_file.open('w') as f: