Open main menu

CDOT Wiki β

Changes

User:Cgomes7/Firefox Build

54 bytes added, 13:14, 19 January 2011
no edit summary
- The batch file will open a command line window. Navigate to the C: directory using the command "cd /c".
- Download the source code for the release version you would like to build. In this case, I downloaded the most recent version. The command "hg clone http://hg.mozilla.org/mozilla-central/" below will copy the most recent version and place it in "c/mozilla-central'. Navigate into the the directory, "using the second command. <pre>hg clone http://hg.mozilla.org/mozilla-central/cd mozilla-central".</pre>
- Next we must create a .mozconfig file. This file will contain build options that will be used by the make file. The commands below will create a mozconfig file and add in the necessary commands for a Firefox default configuration. more options can be found in the
echo 'ac_add_options --disable-tests'
</pre>
 
- Now all that is left is to build.
<pre>
make -f client.mk
</pre>
1
edit