LoginSignup
0
0

More than 5 years have passed since last update.

OSXでV8JSのインストール

Last updated at Posted at 2019-01-12

V8のインストール

brew install v8@3.15

(最新バージョンではv8jsのインストールに問題があるようです。)

ext-v8jsのインストール

sudo pecl install v8js

上記でうまく行かない場合など、最新版のインストールの場合は以下で

git clone https://github.com/phpv8/v8js.git
cd v8js
phpize
./configure
make
sudo make install

v8js.soを追加

extension=v8js.sophp.ini1に追加

確認

$ php -i | grep v8js
/usr/local/php5/php.d/50-extension-v8js.ini,
v8js
v8js.flags => no value => no value
v8js.icudtl_dat_path => no value => no value
v8js.use_array_access => 0 => 0
v8js.use_date => 0 => 0

リンク


  1. php --iniで分かります 

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0