Difference between revisions of "User talk:Kwpark1"
(→Process) |
|||
(8 intermediate revisions by the same user not shown) | |||
Line 24: | Line 24: | ||
I did the easiest way of [http://developer.mozilla.org/en/Mozilla_Source_Code_(Mercurial) Mozilla Source Code via Mercurial] | I did the easiest way of [http://developer.mozilla.org/en/Mozilla_Source_Code_(Mercurial) Mozilla Source Code via Mercurial] | ||
− | * Run batch file | + | * Run batch file <pre>C:\mozilla-build\start-msvc8.bat</pre> |
* Install [http://www.gnu.org/software/autoconf/ Autoconf] | * Install [http://www.gnu.org/software/autoconf/ Autoconf] | ||
− | * Get the mozilla source code | + | * Get the mozilla source code <pre>hg clone http://hg.mozilla.org/mozilla-central/ src</pre> |
− | * Change current dir to src | + | * Change current dir to src <pre>cd src</pre> |
− | * Configuration | + | * Configuration <pre>echo 'ac_add_options --enable-application=browser' > .mozconfig </pre><pre>echo 'mk_add_options MOZ_CO_PROJECT=browser' >> .mozconfig</pre> |
− | echo 'ac_add_options --enable-application=browser' > .mozconfig | + | * Bulid (need around 1Hr) <pre>make -f client.mk build</pre> |
− | echo 'mk_add_options MOZ_CO_PROJECT=browser' >> .mozconfig | + | * Run firefox <pre>dist/bin/firefox -no-remote -profilemanager</pre> |
− | * Bulid (need around 1Hr) | ||
− | * Run firefox | ||
<b>Sept 16, 2008</b> Created | <b>Sept 16, 2008</b> Created |
Latest revision as of 16:45, 19 September 2008
Lab 3: Mozilla Build
Result
Checking before install
This is the prerequisites checking
My Laptop's setting
- H/W
- CPU: Genuine Intel CPU T2250 @ 1.73GHz
- RAM: 512M (512M X 2)
- HDD: 30G free of 90G
- S/W
- Windows XP Pro. SP3
- Microsoft Visual Studio 2005
- .NET Framework 2.0
- Microsoft Windows SDK(s)
- MozillaBuild
Process
I did the easiest way of Mozilla Source Code via Mercurial
- Run batch file
C:\mozilla-build\start-msvc8.bat
- Install Autoconf
- Get the mozilla source code
hg clone http://hg.mozilla.org/mozilla-central/ src
- Change current dir to src
cd src
- Configuration
echo 'ac_add_options --enable-application=browser' > .mozconfig
echo 'mk_add_options MOZ_CO_PROJECT=browser' >> .mozconfig
- Bulid (need around 1Hr)
make -f client.mk build
- Run firefox
dist/bin/firefox -no-remote -profilemanager
Sept 16, 2008 Created