[clang] d02d054 - Clean up Clang's index page slightly

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Thu May 18 09:39:09 PDT 2023


Author: Aaron Ballman
Date: 2023-05-18T12:37:53-04:00
New Revision: d02d054473834091ce662073654c947b0551d61d

URL: https://github.com/llvm/llvm-project/commit/d02d054473834091ce662073654c947b0551d61d
DIFF: https://github.com/llvm/llvm-project/commit/d02d054473834091ce662073654c947b0551d61d.diff

LOG: Clean up Clang's index page slightly

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.

Added: 
    

Modified: 
    clang/www/index.html

Removed: 
    


################################################################################
diff  --git a/clang/www/index.html b/clang/www/index.html
index d568a7b8d414..95bbfa86172b 100755
--- a/clang/www/index.html
+++ b/clang/www/index.html
@@ -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">
@@ -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
@@ -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
@@ -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>


        


More information about the cfe-commits mailing list