From 4bd54a15445cca5565bfb5e43cb3e10bf00a642e Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Wed, 22 Oct 2014 20:33:34 +0000 Subject: Fixed a problem in the lldbinline logic where C++ files could not be validly compiled llvm-svn: 220420 --- lldb/test/lldbinline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/lldbinline.py b/lldb/test/lldbinline.py index 7e8e865e280..24b328740cf 100644 --- a/lldb/test/lldbinline.py +++ b/lldb/test/lldbinline.py @@ -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() -- cgit v1.2.3