1--- v8/tools/run.py.orig 2022-05-19 14:06:27 UTC 2+++ v8/tools/run.py 3@@ -9,7 +9,7 @@ scripts.""" 4 import subprocess 5 import sys 6 7-result = subprocess.call(sys.argv[1:]) 8+sys.exit(subprocess.call(sys.argv[1:], env={"LD_LIBRARY_PATH":"${WRKSRC}/out/Release"})) 9 if result != 0: 10 # Windows error codes such as 0xC0000005 and 0xC0000409 are much easier 11 # to recognize and differentiate in hex. 12