mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-09 16:28:41 +00:00
mention to set-rpath, refs #335
This commit is contained in:
parent
0e0720771c
commit
f6d004c367
@ -67,6 +67,13 @@ sudo cp out.gn/x64.release/lib*.so out.gn/x64.release/*_blob.bin \
|
|||||||
sudo cp -R include/* /opt/v8/include/
|
sudo cp -R include/* /opt/v8/include/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
On Debian Stretch you need to set RPATH on the installed libraries,
|
||||||
|
so the library loader finds the dependencies:
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo apt-get install patchelf
|
||||||
|
for A in /opt/v8/lib/*.so; do sudo patchelf --set-rpath '$ORIGIN' $A; done
|
||||||
|
```
|
||||||
|
|
||||||
Compile php-v8js itself
|
Compile php-v8js itself
|
||||||
-----------------------
|
-----------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user