summaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-12-10 05:20:47 +0000
committerChris Lattner <sabre@nondot.org>2007-12-10 05:20:47 +0000
commitce90ba689a7367fd0ceffc44754f373405010520 (patch)
tree60ac0c7758bd7675a66a17cb37273b167a85ae30 /www
parent7ee5cb329e72d07327178d121ec765b390224c2d (diff)
don't duplicate goals on the features page.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44779 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www')
-rw-r--r--www/content.css7
-rw-r--r--www/features.html57
-rw-r--r--www/index.html7
3 files changed, 22 insertions, 49 deletions
diff --git a/www/content.css b/www/content.css
index e7d44a6066..23244358d2 100644
--- a/www/content.css
+++ b/www/content.css
@@ -10,13 +10,6 @@ table,tr,td {
padding:.4ex;
}
-.li_desc, .li_weak_desc { /* layout + formatting */
- margin: 0 3ex;
- font-size:.9em;
-}
-.li_weak_desc { /* color */
- color:rgb(100,100,100);
-}
.weak_txt {
font-size:.9em;
color:rgb(100,100,100);
diff --git a/www/features.html b/www/features.html
index bcd758951e..316ec9fcf5 100644
--- a/www/features.html
+++ b/www/features.html
@@ -1,52 +1,29 @@
-<!-- Consulted: http://www.w3.org/TR/CSS1 & http://www.w3.org/TR/CSS21/ -->
-<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+ "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
- <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
- <title>Clang - Features</title>
- <link type="text/css" rel="stylesheet" href="menu.css" />
- <link type="text/css" rel="stylesheet" href="content.css" />
- <style type="text/css">
+ <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+ <title>Clang - Features</title>
+ <link type="text/css" rel="stylesheet" href="menu.css" />
+ <link type="text/css" rel="stylesheet" href="content.css" />
+ <style type="text/css">
</style>
</head>
<body>
+
<!--#include virtual="menu.html.incl"-->
+
<div id="content">
- <h1>Features of Clang</h1>
-<p>
-This page outlines the main goals of Clang, as well as some compelling reasons why you should consider using Clang. In the <a href="#goals">Goals</a> section below, you will find a brief, bulleted overview of the goals and features that we are striving for in the development of Clang. However, in the <a href="#keyfeatures">Key Features</a> section you will find a more detailed presentation on what we believe are some key drawing points for the Clang front-end.</p>
-<p><em>If you are new to the Clang front-end and you want a reason for considering working on or using the new front-end, then make sure you check out the <a href="#keyfeatures">Key Features</a> section.</em></p>
+ <h1>Features of Clang</h1>
+ <p>
+ This page outlines the main goals of Clang, as well as some compelling reasons
+ why you should consider using Clang. In the Goals section below, you will find
+ a brief, bulleted overview of the goals and features that we are striving for
+ in the development of Clang. However, in the <a href="#keyfeatures">Key
+ Features</a> section you will find a more detailed presentation on what we
+ believe are some key drawing points for the Clang front-end.</p>
-<h1><a name="goals">Goals</a></h1>
- <ul>
- <li>Real-world, production quality compiler</li>
- <li>Unified parser for C-based languages</li>
- <div class="li_desc">We are only focusing on the C family of languages (C, C++, ObjC); however, if someone wants to work on another language, they are free to take charge of such a project.</div>
- <li>Language conformance with C, ObjC, C++, including dialects (C99, C90, ObjC2, etc)</li>
- <li>GCC compatibility (GCC extensions and 'quirks', where it makes sense)</li>
- <li>Library based architecture with finely crafted C++ APIs</li>
- <div class="li_desc">Makes Clang easier to work with and more flexible.</div>
- <div class="li_weak_desc">(more details on this in the "Key Features" section)</div>
- <li>Easy to extend</li>
- <div class="li_weak_desc">(because of the library based architecture)</div>
- <li>Multipurpose</li>
- <div class="li_desc">Can be used for:
- Indexing, static analysis, code generation,
- source to source tools, refactoring</div>
- <div class="li_weak_desc">(because of library based architecture)</div>
- <li>High performance</li>
- <div class="li_desc">Extremely fast (much faster than GCC), low memory footprint, use lazy evaluation and multithreading</div>
- <div class="li_weak_desc">(more details in the "Key Features" section)</div>
- <li>Better integration with IDEs</li>
- <div class="li_weak_desc">(more details in the "Key Features" section)</div>
- <li><a href="#expressivediags">Expressive diagnostics</a></li>
- <div class="li_desc">Error reporting and diagnostic messages are more detailed an accurate than GCC.</div>
- <div class="li_weak_desc">(more details in the "Key Features" section)</div>
- <li>BSD License</li>
- <div class="li_desc">Fewer restrictions on developers; allows for use in commercial products.</div>
- </ul>
<h1><a name="keyfeatures">Key Features</a></h1>
There are several key features which we believe make Clang an exciting front-end. These features are designed to make things easier for both the compiler developer (people working on Clang and derivative products) and the application developer (those who use Clang/LLVM).
diff --git a/www/index.html b/www/index.html
index ee212f61a1..417e89ba6c 100644
--- a/www/index.html
+++ b/www/index.html
@@ -31,10 +31,10 @@
disabled.</li>
<li><a href="features.html#performance">High performance and low memory
use</a>.</li>
- <li>Build a library-based architecture with finely crafted APIs, allowing
- the code to be reused in many ways.</li>
<li>Support many clients such as refactoring, static analysis, as well as
code generation.</li>
+ <li>Build a library-based architecture with finely crafted APIs, allowing
+ the code to be reused in many ways.</li>
<li>Design for integration with IDEs as well as code generation with the
<a href="http://llvm.org">LLVM Optimizer and Code Generator</a>.</li>
<li><a href="features.html#expressivediags">Expressive diagnostics</a>:
@@ -42,6 +42,9 @@
<li>Use the LLVM <a
href="http://llvm.org/svn/llvm-project/cfe/trunk/LICENSE.TXT">'BSD'
License</a>.</li>
+ <li>Finally, make the code clean and simple enough to make it understandable
+ to anyone who knows the languages involved and has a basic idea of
+ compilers work.</li>
</ul>
<p>Of course this is only a rough outline of the goals and features of