From 9ac0ca07f9e1a12f224994aa297cfc856e4b1e0d Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Wed, 24 Oct 2007 05:09:48 +0000
Subject: [PATCH] further simplify run options, thanks to gordonh for pointing
this out
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43288 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/tutorial/LangImpl3.html | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/docs/tutorial/LangImpl3.html b/docs/tutorial/LangImpl3.html
index a98a979e9e9..7e3ed037737 100644
--- a/docs/tutorial/LangImpl3.html
+++ b/docs/tutorial/LangImpl3.html
@@ -610,8 +610,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` -o toy
+ g++ -g toy.cpp `llvm-config --cppflags --ldflags --libs core` -o toy
# Run
./toy
--
2.34.1