diff options
author | Chris Lattner <sabre@nondot.org> | 2007-10-24 05:09:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-10-24 05:09:48 +0000 |
commit | 824d98f72e8eb9bd772e6d365bd2541cb876a3de (patch) | |
tree | 78a65921b5e16b5aee90c08c6dc1bc01f641fb98 /docs | |
parent | 9b7a758b7dececdaa4947f9bae898890cfaf9c0c (diff) | |
download | external_llvm-824d98f72e8eb9bd772e6d365bd2541cb876a3de.zip external_llvm-824d98f72e8eb9bd772e6d365bd2541cb876a3de.tar.gz external_llvm-824d98f72e8eb9bd772e6d365bd2541cb876a3de.tar.bz2 |
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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorial/LangImpl3.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/tutorial/LangImpl3.html b/docs/tutorial/LangImpl3.html index a98a979..7e3ed03 100644 --- a/docs/tutorial/LangImpl3.html +++ b/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> |