From: Owen Anderson Date: Mon, 24 Mar 2008 21:38:01 +0000 (+0000) Subject: Oops. I wanted the compile flags for C++, not the C preprocessor flags. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=aec960038920c206505268eb2e8f0849364124fe;p=oota-llvm.git Oops. I wanted the compile flags for C++, not the C preprocessor flags. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48744 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/tutorial/JITTutorial1.html b/docs/tutorial/JITTutorial1.html index ef026c0fd6f..4c5a1203c95 100644 --- a/docs/tutorial/JITTutorial1.html +++ b/docs/tutorial/JITTutorial1.html @@ -169,7 +169,7 @@ Module* makeLLVMModule() {
-# 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
 
diff --git a/docs/tutorial/JITTutorial2.html b/docs/tutorial/JITTutorial2.html index ba72ea2abb0..70de151fcdf 100644 --- a/docs/tutorial/JITTutorial2.html +++ b/docs/tutorial/JITTutorial2.html @@ -166,7 +166,7 @@ Module* makeLLVMModule() {
-# 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