[Lldb-commits] [lldb] r220420 - Fixed a problem in the lldbinline logic where C++ files could not be validly compiled

Enrico Granata egranata at apple.com
Wed Oct 22 13:33:35 PDT 2014


Author: enrico
Date: Wed Oct 22 15:33:34 2014
New Revision: 220420

URL: http://llvm.org/viewvc/llvm-project?rev=220420&view=rev
Log:
Fixed a problem in the lldbinline logic where C++ files could not be validly compiled


Modified:
    lldb/trunk/test/lldbinline.py

Modified: lldb/trunk/test/lldbinline.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbinline.py?rev=220420&r1=220419&r2=220420&view=diff
==============================================================================
--- lldb/trunk/test/lldbinline.py (original)
+++ lldb/trunk/test/lldbinline.py Wed Oct 22 15:33:34 2014
@@ -90,7 +90,7 @@ def BuildMakefile(mydir):
         makefile.write("LDFLAGS = $(CFLAGS) -lobjc -framework Foundation\n")
 
     if ('CXX_SOURCES' in categories.keys()):
-        makefile.write("CXXFLAGS += -std-c++11\n")
+        makefile.write("CXXFLAGS += -std=c++11\n")
 
     makefile.write("include $(LEVEL)/Makefile.rules\n")
     makefile.flush()





More information about the lldb-commits mailing list