blob: 06fee594200a718cc5e90b58956cd2a7f5a3ea3b [file] [log] [blame]
Cedric Venet3d658642009-02-14 20:20:19 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3<html>
4<head>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +00005 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
Cedric Venet3d658642009-02-14 20:20:19 +00006 <title>Clang - Get Involved</title>
Benjamin Kramer665a8dc2012-01-15 15:26:07 +00007 <link type="text/css" rel="stylesheet" href="menu.css">
8 <link type="text/css" rel="stylesheet" href="content.css">
Cedric Venet3d658642009-02-14 20:20:19 +00009</head>
10<body>
11
12<!--#include virtual="menu.html.incl"-->
13
14<div id="content">
15
16<h1>Getting Involved with the Clang Project</h1>
17
18<p>Once you have <a href="get_started.html">checked out and built</a> clang and
19played around with it, you might be wondering what you can do to make it better
20and contribute to its development. Alternatively, maybe you just want to follow
21the development of the project to see it progress.
22</p>
23
Stephen Hinesc568f1e2014-07-21 00:47:37 -070024<h2>Contribute</h2>
25
26See the <a href="hacking.html">hacking</a> document for information on how
27to author patches.
28
Cedric Venet3d658642009-02-14 20:20:19 +000029<h2>Follow what's going on</h2>
30
31<p>Clang is a subproject of the <a href="http://llvm.org">LLVM Project</a>, but
32has its own mailing lists because the communities have people with different
33interests. The two clang lists are:</p>
34
35<ul>
36<li><a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits">cfe-commits
37</a> - This list is for patch submission/discussion.</li>
38
39<li><a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev">cfe-dev</a> -
Douglas Gregor3c24cab2011-11-02 22:49:47 +000040This list is for everything else Clang related (questions and answers, design
41discussions, etc).</li>
Cedric Venet3d658642009-02-14 20:20:19 +000042
43</ul>
44
45<p>If you are interested in clang only, these two lists should be all
46you need. If you are interested in the LLVM optimizer and code generator,
47please consider signing up for <a
48href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev">llvmdev</a> and <a
49href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits">llvm-commits</a>
50as well.</p>
51
52
53<p>The best way to talk with other developers on the project is through the <a
54href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev">cfe-dev mailing
55list</a>. The clang mailing list is a very friendly place and we welcome
56newcomers. In addition to the cfe-dev list, a significant amount of design
57discussion takes place on the <a
58href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits">cfe-commits mailing
59list</a>. All of these lists have archives, so you can browse through previous
60discussions or follow the list development on the web if you prefer.</p>
61
Stephen Hines651f13c2014-04-23 16:59:28 -070062<p>You can also follow the <a href="http://planet.clang.org/">Planet Clang</a>
63community news feed which offers a window into the world, work and lives of
64Clang developers, contributors and the standards they implement.</p>
65
66<p>If you're looking for something to work on, check out our <a
67href="OpenProjects.html">Open Projects</a> page or look through the <a
68href="http://llvm.org/bugs/">Bugzilla bug database</a>.</p>
Douglas Gregor40619f32011-07-23 19:21:07 +000069
Benjamin Kramer665a8dc2012-01-15 15:26:07 +000070<h2 id="criteria">Contributing Extensions to Clang</h2>
Douglas Gregor40619f32011-07-23 19:21:07 +000071
72<p>Clang has always been designed as a platform for experimentation,
73allowing programmers to easily extend the compiler to support great
74new language features and tools. At some point, the authors of these
75extensions may propose that the extensions become a part of Clang
76itself, to benefit the whole Clang community. But not every idea--not
77even every great idea--should become part of Clang. Extensions
78(particularly language extensions) pose a long-term maintenance burden
79on Clang, and therefore the benefits of the extension must outweight
80those costs. Hence, these are the seven criteria used to evaluate the
81merits of a proposed extension:</p>
82
83<ol>
84 <li>Evidence of a significant user community: This is based on a number of factors, including an actual, existing user community, the perceived likelihood that users would adopt such a feature if it were available, and any "trickle-down" effects that come from, e.g., a library adopting the feature and providing benefits to its users.</li>
85
86 <li>A specific need to reside within the Clang tree: There are some extensions that would be better expressed as a separate tool, and should remain as separate tools even if they end up being hosted as part of the LLVM umbrella project.</li>
87
88 <li>A complete specification: The specification must be sufficient to understand the design of the feature as well as interpret the meaning of specific examples. The specification should be detailed enough that another compiler vendor could conceivably implement the feature.</li>
89
90 <li>Representation within the appropriate governing organization: For extensions to a language governed by a standards committee (C, C++, OpenCL), the extension itself must have an active proposal and proponent within that committee and have a reasonable chance of acceptance. Clang should drive the standard, not diverge from it. This criterion does not apply to all extensions, since some extensions fall outside of the realm of the standards bodies.</li>
91
92 <li>A long-term support plan: Contributing a non-trivial extension to Clang implies a commitment to supporting that extension, improving the implementation and specification as Clang evolves. The capacity of the contributor to make that commitment is as important as the commitment itself.</li>
93
94 <li>A high-quality implementation: The implementation must fit well into Clang's architecture, follow LLVM's coding conventions, and meet Clang's quality standards, including high-quality diagnostics and rich AST representations. This is particularly important for language extensions, because users will learn how those extensions work through the behavior of the compiler.</li>
95
96 <li>A proper test suite: Extensive testing is crucial to ensure that the language extension is not broken by ongoing maintenance in Clang. The test suite should be complete enough that another compiler vendor could conceivably validate their implementation of the feature against it.</li>
97</ol>
Cedric Venet3d658642009-02-14 20:20:19 +000098
99</div>
100</body>
101</html>