add about:telemetry and a bit more on user studies
[slides.git] / maow-berlin2009-build / slide_getstarted.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
5   <meta name="Author" content="KaiRo - Robert Kaiser">
6   <title>Das Mozilla-Build-System - Einsteig</title>
7   <link rel="stylesheet" type="text/css" href="slides.css">
8   <script type="text/javascript" src="slides.js"></script>
9   <link rel="contents" href="index.html" title="&Uuml;bersicht">
10   <link rel="index" href="toc.html" title="Inhalt">
11   <link rel="start" href="index.html" title="Beginn">
12   <link rel="first" href="slide_introduction.html" title="Erste Seite">
13   <link rel="previous" href="slide_reasons.html" title="Vorige Seite">
14   <link rel="next" href="slide_mozconfig.html" title="N&auml;chste Seite">
15   <link rel="last" href="slide_end.html" title="Letzte Seite">
16 </head>
17 <body>
18 <div id="header"><div id="header-text">Das Mozilla-Build-System</div>
19   <img id="headerlogo" src="template/header-logo.png" alt="">
20 </div>
21 <div id="slidenav"><div id="subheader-text">MAOW Berlin 2009</div>
22   <a href="toc.html" accesskey="h">Inhalt</a> ||
23   <a href="index.html" accesskey="B">Beginn</a> ||
24   <a href="slide_reasons.html" accesskey="Z">&lt; Zur&uuml;ck</a> |
25   <a href="slide_mozconfig.html" id="goNext" accesskey="W">Weiter &gt;</a>
26 </div>
27
28 <h1>Einstieg ins Build-System</h1>
29
30 <div class="simplebox">
31 <ul>
32   <li>DOM-Inspector, Venkman und ChatZilla sind gute Beispiel-Erweiterungen
33     f&uuml;r die Build-System-Einbindung</li>
34   <li>Verschiedene <a href="https://developer.mozilla.org/en/Build_Documentation#Build_prerequisites">Werkzeuge</a>
35     werden vorausgesetzt: MozillaBuild und Windows SDK(s) auf Windows;
36     Xcode, Mercurial, libIDL, autoconf213 auf Mac OS X und
37     div. Entwicklerpakete, inkl. autoconf 2.13, Python, Mercurial, GNU make usw.
38     auf Linux</li>
39   <li>Ein Compiler (gcc bzw. unter Windows MSVC, auch in der Gratis-Version)
40     wird f&uuml;r C/C++-Code usw. ben&ouml;tigt, das Packen einer reinen
41     XUL/JS-Erweiterung funktioniert auch ohne</li>
42   <li>Ein <a href="https://developer.mozilla.org/en/Mozilla_Source_Code_%28Mercurial%29">Mozilla-Code-Baum</a>
43     ist notwendig (ca. 450 MB auf der Festplatte!):
44     <pre>hg pull http://hg.mozilla.org/mozilla-central</pre>
45     alternativ dazu ein
46     <a href="http://developer.mozilla.org/en/Comm-central_source_code_%28Mercurial%29">comm-central-Baum</a>
47     (SeaMonkey/Thunderbird/Sunbird, ca. 520 MB):
48     <pre>hg pull http://hg.mozilla.org/comm-central
49 cd comm-central
50 python client.py checkout</pre>
51     </li>
52   <li>Will man Mozilla-Anwendungen kompilieren, nochmal 230-300 MB pro Anwendung
53     (mit einem Code-Baum k&ouml;nnen mehrere Anwendungen kompiliert werden)</li>
54 </ul>
55 </div>
56 </div>
57
58 </body>
59 </html>