diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2023-05-18 12:37:53 -0400 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2023-05-18 12:37:53 -0400 |
commit | d02d054473834091ce662073654c947b0551d61d (patch) | |
tree | b9bcb7dfa17d09e240455731969455cc4aeef929 | |
parent | 0e85260db1cfd4e8688d917a09a212c2d9a343f3 (diff) | |
download | llvm-d02d054473834091ce662073654c947b0551d61d.zip llvm-d02d054473834091ce662073654c947b0551d61d.tar.gz llvm-d02d054473834091ce662073654c947b0551d61d.tar.bz2 |
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.
-rwxr-xr-x | clang/www/index.html | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/clang/www/index.html b/clang/www/index.html index d568a7b..95bbfa8 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 @@ <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 @@ <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 @@ <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> |