The Mozilla source code can be obtained either by downloading a source archive, or by using a Mercurial (source control) client. If you are just starting out or you want to build a particular Mozilla product release, downloading a source archive is recommended. Otherwise, get the Mozilla Source Code Via Mercurial (for Firefox) or Comm-central Source Code via Mercurial (for Thunderbird, SeaMonkey and Firefox). If you want to browse the source instead of downloading it, read Viewing and searching Mozilla source code online.
Before attempting a build, please review the system requirements and build instructions.
License
Licensing information for the source code is on our licensing page.
Download
Releases
The source code for a release can be found on the Archive server in the "source
" subdirectory of the release you want to acquire. The directory structure on the server is as follows:
https://archive.mozilla.org/pub/PROJECT/releases/RELEASE/source/
where the names in italics mean the following:
-
PROJECT
- The project name, such asfirefox
orthunderbird
. RELEASE
- The release, such as 40.0.
For example, the source code for Firefox release 39.0 can be found at the following URL:
https://archive.mozilla.org/pub/firefox/releases/39.0/source/
The easiest way to find the source code of the release you want is to start at https://archive.mozilla.org/pub/ and navigate your way to it, bearing in mind the directory structure described above. To navigate the archive server use a browser like Firefox.
bonsai
. In this case, you should use CVS (if possible). Specific versions of the applications are accessible with specific CVS Tags.The entire source tree is not available for download over HTTPS.
Nightlies
Source tarballs of the nightly snapshots are not provided.
Unpack
Source code is packaged as bzipped tarballs. This means that you must have tar
along with bzip2
installed, since the -j
flag in the commands listed below means the archive is first being unpacked with bzip2
. To unpack a tarball from a unix-like shell (or the cygwin shell), type:
tar -xjf <source-file.tar.bz2>
Or, if you want to see the files extracted,
tar -xjvf <source-file.tar.bz2>
If the files end with .tar.xz extension, you'll need xz (from https://tukaani.org/xz/). Then for example:
xz -d firefox-47.0b9.source.tar.xz