Skip to content

Commit

Permalink
Clean up Clang's index page slightly
Browse files Browse the repository at this point in the history
Set the charset to UTF-8, link to the actual liscense we used,
claim support for targets LLVM supports instead of listing them
manually, and stop listing individual language standards we support.
  • Loading branch information
AaronBallman committed May 18, 2023
1 parent 0e85260 commit d02d054
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions clang/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ -->
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Clang C Language Family Frontend for LLVM</title>
<link type="text/css" rel="stylesheet" href="menu.css">
<link type="text/css" rel="stylesheet" href="content.css">
Expand Down Expand Up @@ -33,7 +33,7 @@ <h2 id="goals">Features and Goals</h2>
<ul>
<li>Fast compiles and low memory use</li>
<li>Expressive diagnostics (<a href="diagnostics.html">examples</a>)</li>
<li>GCC compatibility</li>
<li>GCC & MSVC compatibility</li>
</ul>

<p><b><a href="features.html#applications">Utility and
Expand All @@ -44,7 +44,9 @@ <h2 id="goals">Features and Goals</h2>
<li>Support diverse clients (refactoring, static analysis, code generation,
etc.)</li>
<li>Allow tight integration with IDEs</li>
<li>Use the LLVM 'Apache 2' License</li>
<li>Use the LLVM 'Apache 2'
<a href="https://github.com/llvm/llvm-project/blob/main/LICENSE.TXT">License</a>
</li>
</ul>

<p><b><a href="features.html#design">Internal Design and
Expand Down Expand Up @@ -80,12 +82,13 @@ <h2>Current Status</h2>

<p>Clang is considered to
be a production quality C, Objective-C, C++ and Objective-C++ compiler when
targeting X86-32, X86-64, and ARM (other targets may have caveats, but are
usually easy to fix). As example, Clang is used in production to build
performance-critical software like Chrome or Firefox.<br /> If you are looking
for source analysis or source-to-source transformation tools, Clang is probably
a great solution for you. Clang supports C++11, C++14 and C++17, please see
the <a href="cxx_status.html">C++ status</a> page for more information.</p>
targeting any target supported by LLVM. As example, Clang is used in
production to build performance-critical software like Chrome or Firefox.
<br /> If you are looking for source analysis or source-to-source
transformation tools, Clang is probably a great solution for you. Please see
the <a href="cxx_status.html">C++ status</a> page or the
<a href="c_status.html">C status</a> page for more information about what
standard modes and features are supported.</p>

<!--=====================================================================-->
<h2>Get it and get involved!</h2>
Expand Down

0 comments on commit d02d054

Please sign in to comment.