SpiderMonkey のソースコードは gzip 形式でも直接 Mercurial リポジトリからも入手できます。
gzip で圧縮された SpiderMonkey のソースコードのダウンロード
gzip で圧縮された SpiderMonkey のソースコードを次の URL からダウンロードできます:
http://ftp.mozilla.org/pub/mozilla.org/js/
コマンドラインから SpiderMonkey ソースコード ver24.2 をダウンロードして展開する例です:
mkdir mozilla cd mozilla wget http://ftp.mozilla.org/pub/mozilla.org/js/mozjs-24.2.0.tar.bz2 tar xjf mozjs-24.2.0.tar.bz2
These commands should work on most platforms including Windows, as long as on Windows you are using the MozillaBuild bash shell.
Mercurial から最新の SpiderMonkey ソースコードを入手する
The Mercurial repository at http://hg.mozilla.org/mozilla-central/ hosts the latest SpiderMonkey sources. Mercurial is also known as hg.
The following command line downloads the entire Mozilla repository, including the full change history and a lot of Gecko and Firefox source code that isn't part of SpiderMonkey. It also changes to the SpiderMonkey directory (js/src).
hg clone http://hg.mozilla.org/mozilla-central/
cd js/src
To avoid getting the full change history, click the zip
or gz
links at http://hg.mozilla.org/index.cgi/mozilla-central/file/tip. This fetches a snapshot of the current Mozilla tree.
If you have problems with the instructions above, you can read the full details of using Mercurial to get Mozilla code here. That page also contains links to several bundles, which can be useful if you have a poor network connection.
Git で最新の SpiderMonkey のソースコードを取得する
The following command line downloads the entire Mozilla repository, including the full change history and a lot of Gecko and Firefox source code that isn't part of SpiderMonkey. It also changes to the SpiderMonkey directory (js/src).
git clone https://github.com/mozilla/gecko-dev.git cd gecko-dev/js/src
If you want a faster (about 5 times as of January 2015) download, try doing a shallow clone (no version control history).
git clone --depth 1 https://github.com/mozilla/gecko-dev.git
If you have any problems check the https://wiki.mozilla.org/Github page.
CVS から古い SpiderMonkey ソースを入手する
Just like when you're fetching any other Mozilla project from CVS, you need to log into the CVS server first. To do this, cd
into the base directory you'd like to check out the code into, then enter the following command at your command line:
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot login
When prompted, enter the password anonymous
.
Once you've logged in, cd
into the root of your CVS tree and enter the following command:
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -l mozilla/js/src mozilla/js/src/config mozilla/js/src/editline mozilla/js/src/fdlibm
This checks out all the files needed in order to build the JavaScript shell.
If you also want the regression tests, add this command:
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co mozilla/js/tests
SpiderMonkey の古いブランチバージョンを入手する
If you want to experiment with a specific branch's version of SpiderMonkey, you need to check out js/src from branch but check out editline
and config
from trunk:
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -l -r BRANCH_NAME mozilla/js/src mozilla/js/src/fdlibm cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -l mozilla/js/src/config mozilla/js/src/editline
Change BRANCH_NAME
to the name of the branch you want to check out. You can use a JavaScript branch name (e.g. JS_1_7_ALPHA_BRANCH
) or a Mozilla branch name (e.g. MOZILLA_1_8_BRANCH
).