diff options
| author | Enrico Granata <egranata@apple.com> | 2014-10-22 20:33:34 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2014-10-22 20:33:34 +0000 |
| commit | 4bd54a15445cca5565bfb5e43cb3e10bf00a642e (patch) | |
| tree | 4297b9fc1a00dacbbbc1c32ed795378d48ead5b6 | |
| parent | eab478c7a81ebdd8c79a4e22a2897d75381bcc3d (diff) | |
| download | bcm5719-llvm-4bd54a15445cca5565bfb5e43cb3e10bf00a642e.tar.gz bcm5719-llvm-4bd54a15445cca5565bfb5e43cb3e10bf00a642e.zip | |
Fixed a problem in the lldbinline logic where C++ files could not be validly compiled
llvm-svn: 220420
| -rw-r--r-- | lldb/test/lldbinline.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |

