aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-10-24 04:37:23 +0000
committerChris Lattner <sabre@nondot.org>2007-10-24 04:37:23 +0000
commit06bb404d0a70e39bdb97e306ec1b1ada0213e229 (patch)
treeff76bcbabf45c71cb116f29eab9177174f70abe4 /docs
parent4a444c717d9b3a13f27d81c640366e84368512ec (diff)
downloadexternal_llvm-06bb404d0a70e39bdb97e306ec1b1ada0213e229.zip
external_llvm-06bb404d0a70e39bdb97e306ec1b1ada0213e229.tar.gz
external_llvm-06bb404d0a70e39bdb97e306ec1b1ada0213e229.tar.bz2
Fix instructions now that PR1739 is fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43287 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorial/LangImpl3.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/LangImpl3.html b/docs/tutorial/LangImpl3.html
index b1f237c..a98a979 100644
--- a/docs/tutorial/LangImpl3.html
+++ b/docs/tutorial/LangImpl3.html
@@ -611,7 +611,7 @@ our makefile/command line about which options to use:</p>
<pre>
# Compile
g++ -g toy.cpp `llvm-config --cppflags` `llvm-config --ldflags` \
- `llvm-config --libs core` -I ~/llvm/include/ -o toy
+ `llvm-config --libs core` -o toy
# Run
./toy
</pre>