[cfe-commits] r66544 - /cfe/trunk/www/get_started.html

Chris Lattner sabre at nondot.org
Tue Mar 10 09:01:44 PDT 2009


Author: lattner
Date: Tue Mar 10 11:01:44 2009
New Revision: 66544

URL: http://llvm.org/viewvc/llvm-project?rev=66544&view=rev
Log:
update this, C headers don't need hacks anymore.

Modified:
    cfe/trunk/www/get_started.html

Modified: cfe/trunk/www/get_started.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/get_started.html?rev=66544&r1=66543&r2=66544&view=diff

==============================================================================
--- cfe/trunk/www/get_started.html (original)
+++ cfe/trunk/www/get_started.html Tue Mar 10 11:01:44 2009
@@ -65,15 +65,15 @@
      <li><tt>svn co http://llvm.org/svn/llvm-project/cfe/trunk clang</tt></li>
 
   </ul>
-  <li>Non-mac users: Paths to system header files are currently hard coded
-      into clang; as a result, if clang can't find your system headers,
-      please follow these instructions:</li>
+  <li>If you intend to work on clang C++ support, you may need to tell it how
+      to find your C++ standard library headers.  If clang can't find your 
+      system libstdc++ headers, please follow these instructions:</li>
 
   <ul>
-    <li>'<tt>touch empty.c; gcc -v empty.c -fsyntax-only</tt>' to get the
+    <li>'<tt>touch empty.cpp; gcc -v empty.cpp -fsyntax-only</tt>' to get the
     path.</li>
     <li>Look for the comment "FIXME: temporary hack:
-    hard-coded paths" in <tt>clang/lib/Driver/InitHeaderSearch.cpp</tt> and
+    hard-coded paths" in <tt>clang/lib/Frontend/InitHeaderSearch.cpp</tt> and
     change the lines below to include that path.</li>
   </ul>
 





More information about the cfe-commits mailing list