]> granicus.if.org Git - clang/commitdiff
www: Add a "Clang Related Projects" page, to collect links to external projects
authorDaniel Dunbar <daniel@zuster.org>
Mon, 4 Oct 2010 15:40:45 +0000 (15:40 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 4 Oct 2010 15:40:45 +0000 (15:40 +0000)
using Clang in one way or another. Additions welcome!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@115508 91177308-0d34-0410-b5e6-96231b3b80d8

www/menu.html.incl
www/related.html [new file with mode: 0644]

index f2a81a38cb7be1f033a4ddbccef44ec54ad9a9d1..4acfbe54f9662ceb1575746ca3066f38ec2bbe2e 100644 (file)
@@ -8,6 +8,7 @@
     <a href="/index.html">About</a>
     <a href="/features.html">Features</a>
     <a href="/comparison.html">Comparisons</a>
+    <a href="/related.html">Related Projects</a>
     <a href="/docs/UsersManual.html">User's Manual</a>
     <a href="/compatibility.html">Language&nbsp;Compatibility</a>
     <a href="/docs/LanguageExtensions.html">Language&nbsp;Extensions</a>
diff --git a/www/related.html b/www/related.html
new file mode 100644 (file)
index 0000000..009bbb9
--- /dev/null
@@ -0,0 +1,55 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 
+          "http://www.w3.org/TR/html4/strict.dtd">
+<!-- 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" />
+  <title>Clang Related Projects</title>
+  <link type="text/css" rel="stylesheet" href="menu.css" />
+  <link type="text/css" rel="stylesheet" href="content.css" />
+</head>
+<body>
+  <!--#include virtual="menu.html.incl"-->
+  <div id="content">
+    <h1>Clang Related Projects</h1>
+    
+    <p>As Clang matures, more and more projects are being built on top the Clang
+      libraries and other open source projects are starting their own Clang
+      related subprojects, like building their source code with Clang or writing
+      custom analysis tools for their code using Clang. This page tracks some of
+      those Clang related projects.</p>
+
+    <p>Please email cfe-dev if you have a Clang related project you would like
+      added to this list.</p>
+
+    <dl>
+      <dt>FreeBSD Clang Page</dt>
+      <dd>
+        <p>
+          <b>Site:</b>
+          <a href="http://wiki.freebsd.org/BuildingFreeBSDWithClang">
+            http://wiki.freebsd.org/BuildingFreeBSDWithClang</a>
+        </p>
+        <p>
+          This is an effort to get FreeBSD to build with clang/llvm. Clang is a
+          compiler built on the Low Level Virtual Machine compiler
+          infrastructure. Both clang and llvm are released under a BSD like
+          license.
+        </p>
+      </dd>
+
+      <dt>Chromium Clang Page</dt>
+      <dd>
+        <p>
+          <b>Site:</b>
+          <a href="http://code.google.com/p/chromium/wiki/Clang">
+            http://code.google.com/p/chromium/wiki/Clang</a>
+        </p>
+        <p>
+          Notes on using Clang to build the Chromium web browser.
+        </p>
+      </dd>
+    </dl>
+  </div>
+</body>
+</html>