summaryrefslogtreecommitdiffstats
path: root/www/get_started.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-03-10 16:01:44 +0000
committerChris Lattner <sabre@nondot.org>2009-03-10 16:01:44 +0000
commitca8c49f9d2c22c6f2a7c6bf289ed1cb943c53116 (patch)
treeb0f530182bec0a4875cf46a7297580692ac8d478 /www/get_started.html
parentc8ad3dcce2483327d1bfee08c30da9a3d46a11ac (diff)
update this, C headers don't need hacks anymore.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66544 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www/get_started.html')
-rw-r--r--www/get_started.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/www/get_started.html b/www/get_started.html
index dbce1f23ab..1809362a61 100644
--- a/www/get_started.html
+++ b/www/get_started.html
@@ -65,15 +65,15 @@ is:</p>
<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>