0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-08 00:25:19 +00:00
phpv8/README.MacOS.md
2022-05-31 10:56:47 +02:00

507 B

V8Js on MacOS

Installation of V8Js on MacOS is pretty much straight forward. The ARM-based M1 chips also work just fine.

You can use brew to install v8. This provides both the library as well as necessary include files in /opt/homebrew.

Compile php-v8js itself

cd /tmp
git clone https://github.com/phpv8/v8js.git
cd v8js
phpize
./configure --with-v8js=/opt/homebrew CPPFLAGS="-DV8_COMPRESS_POINTERS"
make -j4
make test
make install