projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06bb404
)
further simplify run options, thanks to gordonh for pointing this out
author
Chris Lattner
<sabre@nondot.org>
Wed, 24 Oct 2007 05:09:48 +0000
(
05:09
+0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/docs/tutorial/LangImpl3.html
b/docs/tutorial/LangImpl3.html
index a98a979e9e9ed9b583683d439d0cb257b1509812..7e3ed0377372f5d24352ed4f0f6eae684efe81ce 100644
(file)
--- 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>