This repository was archived by the owner on Feb 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Installing Gjstest On Ubuntu
Minh T. Nguyen edited this page Jun 19, 2015
·
3 revisions
How to install Google JS Test on Ubuntu Linux
To get a working gjstest command, do the following steps in order. (This has been tested on Ubuntu 12.04 LTS.)
libxml and libprotobuf
sudo apt-get updatesudo apt-get install libxml2-dev libprotobuf-dev
glog
- Go to http://code.google.com/p/google-glog/downloads/list and download the latest tar file.
- Unpack the tar file, then:
./configure && make && sudo make install
re2
- Go to https://github.com/google/re2/ to download the latest ZIP file.
- Unpack the ZIP file, then:
make && make test && sudo make install
gflags
- Go to https://github.com/gflags/gflags/ and download the latest ZIP file.
- Unpack the ZIP file, then:
./configure && make && sudo make install
v8
git clone git://github.com/v8/v8cd v8; make dependencies && make library=shared nativesudo cp include/* /usr/local/include/sudo cp out/native/lib.target/libv8.so /usr/local/lib/
gjstest
- Go to https://github.com/google/gjstest and download the latest ZIP file.
- Unpack the ZIP file, then:
make && sudo make install