Development:Building:Mozilla 1.9.0 Branch
If you have comments or suggestions, please add them to the Discussion page.
The purpose of this page is to guide you through building and running Camino®. Camino is a stand-alone web browser powered by the Gecko rendering engine. It shouldn't be confused with CHBrowserView, which is just one piece of Camino. If you are new to Camino development, please see our developer introduction for an overview of project conventions and the tools you'll need.
These instructions assume that you are familiar with basic UNIX command-line functionality, such as cd
and mkdir
. For an introduction to the UNIX command line, please see this tutorial.
Contents
Preparing to Build: Tools
Mac OS X 10.4.10 and Xcode 2.4.1 or later are now required for building Camino (Xcode 2.5 on Mac OS X 10.4.11 or Xcode 3 on Mac OS X 10.5.1 are recommended). Xcode is included on a separate disk with the purchase of a new Mac, and the latest version is always available as a free download from Apple Developer Connection.
In addition to disk space required by developer tools and build prerequisites, you will need approximately 4 GB of free disk space for a single debug tree.
Installing Mac OS X Cross Development SDKs
Camino requires a custom Xcode installation to build properly: during installation, click the "Customize" button and turn on the "Cross Development" section. If you have previously installed Xcode without this option, run the installer again to add Cross Development before attempting to build Camino. Trunk versions of currently Camino require the 10.4u SDK for PPC, Intel, and Universal builds. If you are building other versions of Camino, other SDKs are required; see the Appendix for details.
Regardless of which version of Mac OS X you are using, we recommend you always upgrade to the latest "point" release of the OS (e.g., Mac OS X 10.4.11 and Mac OS X 10.5.1 as of December 2007) and the latest Xcode version available for that version of Mac OS X (Xcode 2.5 on 10.4.11, Xcode 3 on 10.5.1).
Upgrading Xcode
When you upgrade to a newer version of Xcode, even a minor-point release, be sure to re-install the Cross Development SDKs from the new version. In addition, delete the Xcode header cache in /Library/Caches/com.apple.Xcode.501/SharedPrecompiledHeaders
(where 501
is your user ID) before building Camino.
Installing libIDL
Mozilla requires libIDL
(and autoconf-2.13
, in the unlikely event that you need to hack any Mozilla configure
scripts) in order to build. While you can build these packages (and their dependencies) from source yourself, most developers use MacPorts. MacPorts is easier to use and is recommended. When installing a new major version of Mac OS X, be sure to upgrade MacPorts to the version appropriate for that Mac OS X version.
- Download the latest MacPorts release for your version of Mac OS X and install it.
- MacPorts installs in
/opt/local
by default. After running the MacPorts installer, the changes that it makes to the shell environment will be available in any new Terminal window.
- MacPorts installs in
- Open a new Terminal window and install the ports (N.B. you will need to use an Administrator account or your account must be listed in the
sudoers
file)sudo port install libidl
- This will take some time as the sources for
libIDL
and its dependencies are downloaded and installed.
- This will take some time as the sources for
sudo port install autoconf213
- The above command installs autoconf-2.13 to
/opt/local/bin/autoconf213
using MacPorts (you can skip this step, and install it later if you find need it). You will need to typeautoconf213
to run it when other documentation might instruct you to runautoconf
. Do not install the autoconf package without the 213 suffix.
- The above command installs autoconf-2.13 to
Setting up your CVS Environment
If you are building from the source tarball and never plan to update your Camino source code except by downloading a new source tarball, you can skip this section. Most users should perform these steps, however--if you are doing development, you should not use the tarball.
Prepare your CVS client using the following parameters:
server: cvs-mirror.mozilla.org
root directory: cvsroot
username: anonymous
password: anonymous
If you are using Terminal.app (recommended) and the bash shell (the default for user accounts created under Mac OS X 10.3 or later), the following command will set up and save the above CVS configuration information:
$ export CVSROOT=:pserver:anonymous:anonymous@cvs-mirror.mozilla.org:/cvsroot
If you are using another shell, you will have to use a different command to save the CVS configuration, but all subsequent commands in the checkout and build process are the same. (You can get to a bash shell at any time by typing "bash" at the command line and hitting "return.")
For more information on Mozilla CVS, see Mozilla Source Code Via CVS.
Pulling Source and Building Gecko and Camino
N.B. These instructions will build the “trunk” by default. If you want to build a specific branch (or a release or milestone from cvs rather than from the source tarball), please see the FAQ for changes you will need to make to some of these commands.
If you are building from the source tarball, skip to step 4 of this section. Be sure to follow the link to learn about other .mozconfig settings, since the sample is for a development build.
cd
into the directory where you would like to keep your copy of the Camino source code (e.g.,cd ~/lizard
).- Pull the main build makefile and configuration directory:
$ cvs co mozilla/client.mk mozilla/camino/config/mozconfig mozilla/build/macosx/universal/mozconfig
The last file is needed only if you are building a Universal Camino. Please note that if you only want to compile Camino for use on an Intel Mac, you do not need to build a Universal Camino. cd
into themozilla
directory that was just created:
$ cd mozilla
- In your
mozilla
directory, create a plain text file called.mozconfig
(note the leading period). This file is where you will set up the options for your Camino build. For a development build add the following to your.mozconfig
file (note the leading dot and space):
. $topsrcdir/camino/config/mozconfig ac_add_options --disable-optimize ac_add_options --enable-debug mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/../CaminoTrunk mk_add_options MOZ_MAKE_FLAGS=-j4
(The MOZ_MAKE_FLAGS setting improves build speed, assuming you have a multi-processor or multi-core machine. For older machines, remove that line.)
For examples of other builds types, or to learn more about the
.mozconfig
file, see the .mozconfig page. - Pull source and build:
- To pull the source and build in one step, use:
$ make -f client.mk
This will automatically pull the source code from the CVS server and build Camino (including various components of Mozilla that Camino requires). The final Camino build ends up inmozilla/dist
(or$OBJDIR/dist
).
- To pull the source without building, use this command:
$ make -f client.mk checkout MOZ_CO_PROJECT=camino
You can then build at any time by runningmake -f client.mk alldep
from themozilla
directory.
- If you're using the source tarball, use the following instead of the above commands:
$ cd mozilla
(if you are not already inmozilla
)
$ make -f client.mk alldep
- To pull the source and build in one step, use:
For more information on the build process, see Mac OS X Build Prerequisites and Mac OS X Universal Binaries in the Mozilla Developer Center.
If your build fails, consult the FAQ and Common Build Errors pages.
Development
To work on Camino application code, open up the Camino.xcodeproj
project (from the camino
directory of your OBJDIR) in Xcode. You can edit code, build, and run from inside of Xcode. (You can, of course, use an editor of your choice and rebuild either from Xcode or from the command line.)
When building with Xcode, make sure your build settings match those in your .mozconfig
file: from the "Active Build Style" item in the toolbar, choose "Development" for a debug build, or "Deployment" for an optimized build. If you do not match your settings to your .mozconfig
, your build will fail.
Camino code
If you've changed code only within the camino
directory, you can usually rebuild using Xcode. (Again, make sure your build settings match your .mozconfig
file).
.in
and generated files
However, if you’ve edited the source files for certain files that are generated during the build process (e.g., the .in
files for .strings
files, all-camino.js
, or the Makefile
) or any of the embed.jar
overrides, you will need to rebuild using the command line: cd $OBJDIR/camino; make
Widget code
If you've edited the Cocoa widget code, you can make
in $OBJDIR/widget/src/cocoa
to rebuild the widget library with your changes and then copy the new version of the widget library into your build.
The easiest way to get the new version of the library into Camino to test it is to use cp
to copy it into the Camino application package (into $OBJDIR/camino/build/Development/Camino.app/Contents/MacOS/components
). (This tactic does not work for static builds, which is why they are not recommended for development.) As an alternative, you can make
in $OBJDIR/embedding/config
and $OBJDIR/camino
again.
Other changes
If you've changed anything outside the camino
directory (aside from widget code — see above), you cannot build from inside Xcode, and will need to make -f client.mk
from the mozilla
directory (or make
from the root of your OBJDIR, if you're using an OBJDIR as recommended by the sample development .mozconfig
above).
Updating the source and rebuilding
Since the Mozilla core (Gecko) and Camino code are always under constant development, you will periodically want to update your source tree to stay current and to make sure your code will not conflict with any changes that have happened since you began working. (You will always want to make sure your tree is current before beginning work on the code and before submitting a patch for review.)
Before updating your tree, visit the Tinderbox and make sure that the columns whose headings end in “Cm2-M1.9” and “CmTrunk” are green (these are the Camino trunk builds). Then cd
to your mozilla
directory and run the following commands to update and rebuild your entire tree:
$ make -f client.mk
(To pull updated source files for the entire tree without rebuilding, substitute $ make -f client.mk checkout
for the second command, and then make
as usual when you are ready to build.)
It's possible in most cases to update only Camino code (unless Gecko changes have made changes to Camino code), but it is still recommended that you update your entire tree regularly. To update only the Camino code, cd
to your mozilla/camino
directory and run the following commands:
$ cvs update -dP
$ make
For OBJDIR builds used by most developers, replace make
with cd ../../{OBJDIR}/camino; make
(the sample development .mozconfig
above specifies an OBJDIR by default). Note that in OBJDIR builds, you must run make
from the command line after a cvs update
that pulls certain types of changes, including project changes and changes to any .strings
file, since updated versions of these files are copied into the OBJDIR or regenerated by Makefile targets.
Hacking configure
On rare occasions you may need to hack a configure
script to make Camino build a new Gecko extension (mozilla/extensions/foo
) or some other configurable part of the build. To do this, you have to patch configure.in
and then regenerate your local configure
to test the build with your changes.
To do this, you need autoconf-2.13
(the version of autoconf
that ships with all Mac OS X developer tools will not work). After you install autoconf-2.13
, you regenerate configure
simply by cd mozilla
and autoconf213
. Then rebuild your tree as usual.
Packaging a build for testing
Sometimes you'll want to create a custom build to allow a large new feature to receive wider testing from the community before review or landing. In order to do this, you need to build with a “distribution” .mozconfig
. Then, when your build is complete, run make
in $OBJDIR/camino/installer
to produce a disk image for distribution. You can use your existing source tree but “swap in” a deployment .mozconfig
that defines a new OBJDIR to provide a clean build.
Cleaning your tree
Sometimes your build will fail because there are stale build products somewhere in the tree and new ones that conflict, or for other reasons related to the state of your tree. This can be fixed by cleaning your tree. To clean your tree, cd
to mozilla
and try make -f client.mk clean
. If that doesn't work, you need to make -f client.mk distclean
.
Appendix
- Build FAQ
- Common Build Errors
- .mozconfig Details
- Common make Targets
- Building on the Mozilla 1.8.* branches (Camino 1.6.x, Camino 1.5.x, Camino 1.0.x) (in progress)
- Building Dependencies from Source (in progress)