We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e07207 commit f6d004cCopy full SHA for f6d004c
README.Linux.md
@@ -67,6 +67,13 @@ sudo cp out.gn/x64.release/lib*.so out.gn/x64.release/*_blob.bin \
67
sudo cp -R include/* /opt/v8/include/
68
```
69
70
+On Debian Stretch you need to set RPATH on the installed libraries,
71
+so the library loader finds the dependencies:
72
+
73
+```
74
+sudo apt-get install patchelf
75
+for A in /opt/v8/lib/*.so; do sudo patchelf --set-rpath '$ORIGIN' $A; done
76
77
78
Compile php-v8js itself
79
-----------------------
0 commit comments