summaryrefslogtreecommitdiffstats
path: root/llvm/docs/tutorial/LangImpl3.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-10-24 05:09:48 +0000
committerChris Lattner <sabre@nondot.org>2007-10-24 05:09:48 +0000
commit9a760ebf32bd255213a4a20ab322bca0abaac810 (patch)
tree6946d8df5b057f87e5ea8cde77e6384243d909db /llvm/docs/tutorial/LangImpl3.html
parent1fb0d5df694a01e912a6f8108cff0780f7ccf584 (diff)
downloadbcm5719-llvm-9a760ebf32bd255213a4a20ab322bca0abaac810.tar.gz
bcm5719-llvm-9a760ebf32bd255213a4a20ab322bca0abaac810.zip
further simplify run options, thanks to gordonh for pointing this out
llvm-svn: 43288
Diffstat (limited to 'llvm/docs/tutorial/LangImpl3.html')
-rw-r--r--llvm/docs/tutorial/LangImpl3.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/LangImpl3.html b/llvm/docs/tutorial/LangImpl3.html
index a98a979e9e9..7e3ed037737 100644
--- a/llvm/docs/tutorial/LangImpl3.html
+++ b/llvm/docs/tutorial/LangImpl3.html
@@ -610,8 +610,7 @@ our makefile/command line about which options to use:</p>
<div class="doc_code">
<pre>
# 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
</pre>
OpenPOWER on IntegriCloud