blob: c7638be1be280cd4b3446769e6f2fc0277a48e49 [file] [log] [blame]
Robert Ly35f2fda2013-01-29 16:27:05 -08001page.title=Initializing a Build Environment
2@jd:body
3
4<!--
5 Copyright 2010 The Android Open Source Project
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18-->
19<div id="qv-wrapper">
20 <div id="qv">
21 <h2>In this document</h2>
22 <ol id="auto-toc">
23 </ol>
24 </div>
25</div>
26
Robert Ly001b1d42013-05-08 15:02:29 -070027<p>This section describes how to set up your local work environment to build the Android source files. You will need to use Linux or Mac OS. Building under Windows is not currently supported.</p>
Robert Ly40e3b6d2013-04-17 18:12:10 -070028<p><em>Note: The source download is approximately 8.5GB in size.
29You will need over 30GB free to complete a single build, and
30up to 100GB (or more) for a full set of builds.</em></p>
31<p>For an overview of the entire code-review and code-update process, see <a href="life-of-a-patch.html">Life of a Patch</a>.</p>
32<h1 id="choosing-a-branch">Choosing a Branch</h1>
33<p>Some of the requirements for your build environment are determined by which
34version of the source code you plan to compile. See
35<a href="build-numbers.html">Build Numbers</a> for a full listing of branches you may
36choose from. You may also choose to download and build the latest source code
37(called "master"), in which case you will simply omit the branch specification
38when you initialize the repository.</p>
39<p>Once you have selected a branch, follow the appropriate instructions below to
40set up your build environment.</p>
41<h1 id="setting-up-a-linux-build-environment">Setting up a Linux build environment</h1>
42<p>These instructions apply to all branches, including master.</p>
43<p>The Android build is routinely tested in house on recent versions of
44Ubuntu LTS (10.04), but most distributions should have the required
45build tools available. Reports of successes or failures on other
46distributions are welcome.</p>
47<p>For Gingerbread (2.3.x) and newer versions, including the master
48branch, a 64-bit environment is required. Older versions can be
49compiled on 32-bit systems.</p>
50<p><em>Note: It is also possible to build Android in a virtual machine.
51If you are running Linux in a virtual machine, you will need at
52least 16GB of RAM/swap and 30GB or more of disk space in order to
53build the Android tree.</em></p>
54<p>Detailed instructions for Ubuntu and MacOS follow. In general you will need:</p>
55<ul>
56<li>
57<p>Python 2.6 -- 2.7, which you can download from <a href="http://www.python.org/download/">python.org</a>.</p>
58</li>
59<li>
60<p>GNU Make 3.81 -- 3.82, which you can download from <a href="http://ftp.gnu.org/gnu/make/">gnu.org</a>,</p>
61</li>
62<li>
63<p>JDK 6 if you wish to build Gingerbread or newer; JDK 5 for Froyo or older. You can download both from <a href="http://java.sun.com/javase/downloads/">java.sun.com</a>.</p>
64</li>
65<li>
66<p>Git 1.7 or newer. You can find it at <a href="http://git-scm.com/download">git-scm.com</a>.</p>
67</li>
68</ul>
69<h2 id="installing-the-jdk">Installing the JDK</h2>
Robert Ly35f2fda2013-01-29 16:27:05 -080070<p>The Sun JDK is no longer in Ubuntu's main package repository. In order to download it, you need to add the appropriate repository and indicate to the system which JDK should be used.</p>
71<p>Java 6: for Gingerbread and newer</p>
72<pre><code>$ sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
73$ sudo apt-get update
74$ sudo apt-get install sun-java6-jdk
75</code></pre>
76<p>Java 5: for Froyo and older</p>
77<pre><code>$ sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu hardy main multiverse"
78$ sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu hardy-updates main multiverse"
79$ sudo apt-get update
80$ sudo apt-get install sun-java5-jdk
81</code></pre>
82<p><em>Note: The <code>lunch</code> command in the build step will ensure that the Sun JDK is
83used instead of any previously installed JDK.</em></p>
Conley Owens6c2621e2013-10-08 09:45:30 -070084
85<h2 id="installing-required-packages-ubuntu-1204">Installing required packages (Ubuntu 12.04)</h2>
86<p>You will need a 64-bit version of Ubuntu. Ubuntu 12.04 is recommended.
87Building using an older version of Ubuntu is not supported on master or recent releases.
Robert Ly35f2fda2013-01-29 16:27:05 -080088supported and is not guaranteed to work on branches other than master.</p>
Conley Owens6c2621e2013-10-08 09:45:30 -070089<pre><code>$ sudo apt-get install git gnupg flex bison gperf build-essential \
90 zip curl libc6-dev libncurses5-dev:i386 x11proto-core-dev \
91 libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-glx:i386 \
92 libgl1-mesa-dev g++-multilib mingw32 tofrodos \
93 python-markdown libxml2-utils xsltproc zlib1g-dev:i386
94$ sudo ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so.1 /usr/lib/i386-linux-gnu/libGL.so
95</code></pre>
96
97<h2 id="installing-required-packages-ubuntu-1004-1110">Installing required packages (Ubuntu 10.04 -- 11.10)</h2>
98<p>Building on Ubuntu 10.04-11.10 is no longer supported, but may be useful for building older
99releases of AOSP.</p>
Robert Ly35f2fda2013-01-29 16:27:05 -0800100<pre><code>$ sudo apt-get install git-core gnupg flex bison gperf build-essential \
101 zip curl zlib1g-dev libc6-dev lib32ncurses5-dev ia32-libs \
102 x11proto-core-dev libx11-dev lib32readline5-dev lib32z-dev \
103 libgl1-mesa-dev g++-multilib mingw32 tofrodos python-markdown \
104 libxml2-utils xsltproc
105</code></pre>
106<p>On Ubuntu 10.10:</p>
107<pre><code>$ sudo ln -s /usr/lib32/mesa/libGL.so.1 /usr/lib32/mesa/libGL.so
108</code></pre>
109<p>On Ubuntu 11.10:</p>
110<pre><code>$ sudo apt-get install libx11-dev:i386
111</code></pre>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700112<h2 id="configuring-usb-access">Configuring USB Access</h2>
Robert Ly35f2fda2013-01-29 16:27:05 -0800113<p>Under GNU/linux systems (and specifically under Ubuntu systems),
114regular users can't directly access USB devices by default. The
115system needs to be configured to allow such access.</p>
116<p>The recommended approach is to create a file
117<code>/etc/udev/rules.d/51-android.rules</code> (as the root user) and to copy
118the following lines in it. <code>&lt;username&gt;</code> must be replaced by the
119actual username of the user who is authorized to access the phones
120over USB.</p>
121<pre><code># adb protocol on passion (Nexus One)
122SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4e12", MODE="0600", OWNER="&lt;username&gt;"
123# fastboot protocol on passion (Nexus One)
124SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", ATTR{idProduct}=="0fff", MODE="0600", OWNER="&lt;username&gt;"
125# adb protocol on crespo/crespo4g (Nexus S)
126SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4e22", MODE="0600", OWNER="&lt;username&gt;"
127# fastboot protocol on crespo/crespo4g (Nexus S)
128SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4e20", MODE="0600", OWNER="&lt;username&gt;"
129# adb protocol on stingray/wingray (Xoom)
130SUBSYSTEM=="usb", ATTR{idVendor}=="22b8", ATTR{idProduct}=="70a9", MODE="0600", OWNER="&lt;username&gt;"
131# fastboot protocol on stingray/wingray (Xoom)
132SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="708c", MODE="0600", OWNER="&lt;username&gt;"
133# adb protocol on maguro/toro (Galaxy Nexus)
134SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", ATTR{idProduct}=="6860", MODE="0600", OWNER="&lt;username&gt;"
135# fastboot protocol on maguro/toro (Galaxy Nexus)
136SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4e30", MODE="0600", OWNER="&lt;username&gt;"
137# adb protocol on panda (PandaBoard)
138SUBSYSTEM=="usb", ATTR{idVendor}=="0451", ATTR{idProduct}=="d101", MODE="0600", OWNER="&lt;username&gt;"
Martin Storsjo62678bb2013-09-30 13:38:16 +0300139# adb protocol on panda (PandaBoard ES)
140SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="d002", MODE="0600", OWNER="&lt;username&gt;"
Robert Ly35f2fda2013-01-29 16:27:05 -0800141# fastboot protocol on panda (PandaBoard)
142SUBSYSTEM=="usb", ATTR{idVendor}=="0451", ATTR{idProduct}=="d022", MODE="0600", OWNER="&lt;username&gt;"
143# usbboot protocol on panda (PandaBoard)
144SUBSYSTEM=="usb", ATTR{idVendor}=="0451", ATTR{idProduct}=="d00f", MODE="0600", OWNER="&lt;username&gt;"
145# usbboot protocol on panda (PandaBoard ES)
146SUBSYSTEM=="usb", ATTR{idVendor}=="0451", ATTR{idProduct}=="d010", MODE="0600", OWNER="&lt;username&gt;"
147# adb protocol on grouper/tilapia (Nexus 7)
148SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4e42", MODE="0600", OWNER="&lt;username&gt;"
149# fastboot protocol on grouper/tilapia (Nexus 7)
150SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4e40", MODE="0600", OWNER="&lt;username&gt;"
Robert Ly40e3b6d2013-04-17 18:12:10 -0700151# adb protocol on manta (Nexus 10)
Robert Ly35f2fda2013-01-29 16:27:05 -0800152SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4ee2", MODE="0600", OWNER="&lt;username&gt;"
Robert Ly40e3b6d2013-04-17 18:12:10 -0700153# fastboot protocol on manta (Nexus 10)
Robert Ly35f2fda2013-01-29 16:27:05 -0800154SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4ee0", MODE="0600", OWNER="&lt;username&gt;"
155</code></pre>
156<p>Those new rules take effect the next time a device is plugged in.
157It might therefore be necessary to unplug the device and plug it
158back into the computer.</p>
159<p>This is known to work on both Ubuntu Hardy Heron (8.04.x LTS) and
160Lucid Lynx (10.04.x LTS). Other versions of Ubuntu or other
161variants of GNU/linux might require different configurations.</p>
162<p><a name="ccache"></a></p>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700163<h2 id="setting-up-ccache">Setting up ccache</h2>
Robert Ly35f2fda2013-01-29 16:27:05 -0800164<p>You can optionally tell the build to use the ccache compilation tool.
165Ccache acts as a compiler cache that can be used to speed-up rebuilds.
166This works very well if you do "make clean" often, or if you frequently
167switch between different build products.</p>
168<p>Put the following in your .bashrc or equivalent.</p>
169<pre><code>export USE_CCACHE=1
170</code></pre>
171<p>By default the cache will be stored in ~/.ccache.
172If your home directory is on NFS or some other non-local filesystem,
173you will want to specify the directory in your .bashrc as well.</p>
174<pre><code>export CCACHE_DIR=&lt;path-to-your-cache-directory&gt;
175</code></pre>
176<p>The suggested cache size is 50-100GB.
177You will need to run the following command once you have downloaded
178the source code:</p>
179<pre><code>prebuilts/misc/linux-x86/ccache/ccache -M 50G
180</code></pre>
181<p>When building Ice Cream Sandwich (4.0.x) or older, ccache is in
182a different location:</p>
183<pre><code>prebuilt/linux-x86/ccache/ccache -M 50G
184</code></pre>
185<p>This setting is stored in the CCACHE_DIR and is persistent.</p>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700186<h2 id="using-a-separate-output-directory">Using a separate output directory</h2>
Robert Ly35f2fda2013-01-29 16:27:05 -0800187<p>By default, the output of each build is stored in the out/
188subdirectory of the matching source tree.</p>
189<p>On some machines with multiple storage devices, builds are
190faster when storing the source files and the output on
191separate volumes. For additional performance, the output
192can be stored on a filesystem optimized for speed instead
193of crash robustness, since all files can be re-generated
194in case of filesystem corruption.</p>
195<p>To set this up, export the <code>OUT_DIR_COMMON_BASE</code> variable
196to point to the location where your output directories
197will be stored.</p>
198<pre><code>export OUT_DIR_COMMON_BASE=&lt;path-to-your-out-directory&gt;
199</code></pre>
200<p>The output directory for each separate source tree will be
201named after the directory holding the source tree.</p>
202<p>For instance, if you have source trees as <code>/source/master1</code>
203and <code>/source/master2</code> and <code>OUT_DIR_COMMON_BASE</code> is set to
204<code>/output</code>, the output directories will be <code>/output/master1</code>
205and <code>/output/master2</code>.</p>
206<p>It's important in that case to not have multiple source
207trees stored in directories that have the same name,
208as those would end up sharing an output directory, with
209unpredictable results.</p>
210<p>This is only supported on Jelly Bean (4.1) and newer,
211including the master branch.</p>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700212<h1 id="setting-up-a-mac-os-x-build-environment">Setting up a Mac OS X build environment</h1>
Robert Ly35f2fda2013-01-29 16:27:05 -0800213<p>In a default installation, OS X runs on a case-preserving but case-insensitive
214filesystem. This type of filesystem is not supported by git and will cause some
215git commands (such as "git status") to behave abnormally. Because of this, we
216recommend that you always work with the AOSP source files on a case-sensitive
217filesystem. This can be done fairly easily using a disk image, discussed below.</p>
218<p>Once the proper filesystem is available, building the master branch in a modern
219OS X environment is very straightforward. Earlier branches, including ICS,
220require some additional tools and SDKs.</p>
221<h3 id="creating-a-case-sensitive-disk-image">Creating a case-sensitive disk image</h3>
222<p>You can create a case-sensitive filesystem within your existing OS X environment
223using a disk image. To create the image, launch Disk
224Utility and select "New Image". A size of 25GB is the minimum to
225complete the build, larger numbers are more future-proof. Using sparse images
226saves space while allowing to grow later as the need arises. Be sure to select
227"case sensitive, journaled" as the volume format.</p>
228<p>You can also create it from a shell with the following command:</p>
229<pre><code># hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 40g ~/android.dmg
230</code></pre>
231<p>This will create a .dmg (or possibly a .dmg.sparsefile) file which, once mounted, acts as a drive with the required formatting for Android development. For a disk image named "android.dmg" stored in your home directory, you can add the following to your <code>~/.bash_profile</code> to mount the image when you execute "mountAndroid":</p>
232<pre><code># mount the android file image
233function mountAndroid { hdiutil attach ~/android.dmg -mountpoint /Volumes/android; }
234</code></pre>
235<p>Once mounted, you'll do all your work in the "android" volume. You can eject it (unmount it) just like you would with an external drive.</p>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700236<h2 id="master-branch">Master branch</h2>
Robert Ly35f2fda2013-01-29 16:27:05 -0800237<p>To build the latest source in a Mac OS environment, you will need an Intel/x86
Conley Owens6c2621e2013-10-08 09:45:30 -0700238machine running MacOS 10.8 (Mountain Lion), along with Xcode
2394.5.2 and Command Line Tools.</p>
240<h2 id="branch-40x-and-all-earlier-branches">Branch 4.2.x and earlier branches</h2>
241<p>To build 4.2.x and earlier source in a Mac OS environment, you will need an Intel/x86
Robert Ly35f2fda2013-01-29 16:27:05 -0800242machine running MacOS 10.6 (Snow Leopard) or MacOS 10.7 (Lion), along with Xcode
2434.2 (Apple's Developer Tools). Although Lion does not come with a JDK, it should
244install automatically when you attempt to build the source.</p>
245<p>The remaining sections for Mac OS X only apply to those who wish to build
246earlier branches.</p>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700247<h2 id="branch-40x-and-all-earlier-branches">Branch 4.0.x and all earlier branches</h2>
Robert Ly35f2fda2013-01-29 16:27:05 -0800248<p>To build android-4.0.x and earlier branches in a Mac OS environment, you need an
249Intel/x86 machine running MacOS 10.5 (Leopard) or MacOS 10.6 (Snow Leopard). You
250will need the MacOS 10.5 SDK.</p>
251<h3 id="installing-required-packages">Installing required packages</h3>
252<ul>
253<li>
254<p>Install Xcode from <a href="http://developer.apple.com/">the Apple developer site</a>.
255We recommend version 3.1.4 or newer, i.e. gcc 4.2.
256Version 4.x could cause difficulties.
257If you are not already registered as an Apple developer, you will have to
258create an Apple ID in order to download.</p>
259</li>
260<li>
261<p>Install MacPorts from <a href="http://www.macports.org/install.php">macports.org</a>.</p>
262<p><em>Note: Make sure that <code>/opt/local/bin</code> appears in your path BEFORE <code>/usr/bin</code>. If not, add</em> </p>
263<pre><code>export PATH=/opt/local/bin:$PATH
264</code></pre>
265<p><em>to your <code>~/.bash_profile</code>.</em></p>
266</li>
267<li>
268<p>Get make, git, and GPG packages from MacPorts: </p>
269<pre><code>$ POSIXLY_CORRECT=1 sudo port install gmake libsdl git-core gnupg
270</code></pre>
271<p>If using Mac OS 10.4, also install bison:</p>
272<pre><code>$ POSIXLY_CORRECT=1 sudo port install bison
273</code></pre>
274</li>
275</ul>
276<h3 id="reverting-from-make-382">Reverting from make 3.82</h3>
277<p>For versions of Android before ICS, there is a bug in gmake 3.82 that prevents android from building. You can install version 3.81 using MacPorts by taking the following steps:</p>
278<ul>
279<li>
280<p>Edit <code>/opt/local/etc/macports/sources.conf</code> and add a line that says</p>
281<pre><code>file:///Users/Shared/dports
282</code></pre>
283<p>above the rsync line. Then create this directory: </p>
284<pre><code>$ mkdir /Users/Shared/dports
285</code></pre>
286</li>
287<li>
288<p>In the new <code>dports</code> directory, run </p>
289<pre><code>$ svn co --revision 50980 http://svn.macports.org/repository/macports/trunk/dports/devel/gmake/ devel/gmake/
290</code></pre>
291</li>
292<li>
293<p>Create a port index for your new local repository: </p>
294<pre><code>$ portindex /Users/Shared/dports
295</code></pre>
296</li>
297<li>
298<p>Finally, install the old version of gmake with </p>
299<pre><code>$ sudo port install gmake @3.81
300</code></pre>
301</li>
302</ul>
303<h3 id="setting-a-file-descriptor-limit">Setting a file descriptor limit</h3>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700304<p>On MacOS the default limit on the number of simultaneous file descriptors open is too low and a highly parallel build process may exceed this limit.<br />
305</p>
Robert Ly35f2fda2013-01-29 16:27:05 -0800306<p>To increase the cap, add the following lines to your <code>~/.bash_profile</code>: </p>
307<pre><code># set the number of open files to be 1024
308ulimit -S -n 1024
309</code></pre>
Robert Ly40e3b6d2013-04-17 18:12:10 -0700310<h1 id="next-download-the-source">Next: Download the source</h1>
Conley Owens6c2621e2013-10-08 09:45:30 -0700311<p>Your build environment is good to go! Proceed to <a href="downloading.html">downloading the source</a>....</p>