further simplify run options, thanks to gordonh for pointing this out
authorChris Lattner <sabre@nondot.org>
Wed, 24 Oct 2007 05:09:48 +0000 (05:09 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 24 Oct 2007 05:09:48 +0000 (05:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43288 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl3.html

index a98a979e9e9ed9b583683d439d0cb257b1509812..7e3ed0377372f5d24352ed4f0f6eae684efe81ce 100644 (file)
@@ -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>