diff options
author | Owen Anderson <resistor@mac.com> | 2008-03-24 21:38:01 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-03-24 21:38:01 +0000 |
commit | ce2682184f809874da542b19fee0fdc03047b5e3 (patch) | |
tree | 3cd35da7f01b22315b3b64537e9011e55e8b5d24 /llvm/docs | |
parent | c905fe9407bcad7beeb2774e2956c51ab45d2318 (diff) | |
download | bcm5719-llvm-ce2682184f809874da542b19fee0fdc03047b5e3.tar.gz bcm5719-llvm-ce2682184f809874da542b19fee0fdc03047b5e3.zip |
Oops. I wanted the compile flags for C++, not the C preprocessor flags.
llvm-svn: 48744
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/tutorial/JITTutorial1.html | 2 | ||||
-rw-r--r-- | llvm/docs/tutorial/JITTutorial2.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/JITTutorial1.html b/llvm/docs/tutorial/JITTutorial1.html index ef026c0fd6f..4c5a1203c95 100644 --- a/llvm/docs/tutorial/JITTutorial1.html +++ b/llvm/docs/tutorial/JITTutorial1.html @@ -169,7 +169,7 @@ Module* makeLLVMModule() { <div class="doc_code"> <pre> -# c++ -g tut1.cpp `llvm-config --cppflags --ldflags --libs core` -o tut1 +# c++ -g tut1.cpp `llvm-config --cxxflags --ldflags --libs core` -o tut1 # ./tut1 </pre> </div> diff --git a/llvm/docs/tutorial/JITTutorial2.html b/llvm/docs/tutorial/JITTutorial2.html index ba72ea2abb0..70de151fcdf 100644 --- a/llvm/docs/tutorial/JITTutorial2.html +++ b/llvm/docs/tutorial/JITTutorial2.html @@ -166,7 +166,7 @@ Module* makeLLVMModule() { <div class="doc_code"> <pre> -# c++ -g tut2.cpp `llvm-config --cppflags --ldflags --libs core` -o tut2 +# c++ -g tut2.cpp `llvm-config --cxxflags --ldflags --libs core` -o tut2 # ./tut2 </pre> </div> |