From 06bb404d0a70e39bdb97e306ec1b1ada0213e229 Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Wed, 24 Oct 2007 04:37:23 +0000
Subject: [PATCH] Fix instructions now that PR1739 is fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43287 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/tutorial/LangImpl3.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/tutorial/LangImpl3.html b/docs/tutorial/LangImpl3.html
index b1f237c2c4a..a98a979e9e9 100644
--- a/docs/tutorial/LangImpl3.html
+++ b/docs/tutorial/LangImpl3.html
@@ -611,7 +611,7 @@ our makefile/command line about which options to use:
# 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
--
2.34.1