Revert "Fix tests on Windows."
authorZachary Turner <zturner@google.com>
Tue, 6 Sep 2016 22:40:11 +0000 (22:40 +0000)
committerZachary Turner <zturner@google.com>
Tue, 6 Sep 2016 22:40:11 +0000 (22:40 +0000)
This reverts commit 9b757b6e3946311802972409f38c6cefbea917b3.

This seems to cause strange breakages about on Ubuntu.

llvm-svn: 280763

lldb/packages/Python/lldbsuite/test/make/Makefile.rules

index 5eb8caa..3726826 100644 (file)
@@ -216,7 +216,7 @@ ifeq "$(MAKE_GMODULES)" "YES"
        CFLAGS += -fmodules -gmodules
 endif
 
-CXXFLAGS += -std=c++14
+CXXFLAGS += -std=c++11
 # FIXME: C++ modules aren't supported on all platforms.
 CXXFLAGS += $(subst -fmodules,, $(CFLAGS))
 LD = $(CC)
@@ -444,7 +444,7 @@ ifneq "$(filter g++,$(CXX))" ""
        ifeq "$(CXXVERSION)" "4.6"
                 # GCC 4.6 cannot handle -std=c++11, so replace it with -std=c++0x
                 # instead. FIXME: remove once GCC version is upgraded.
-               override CXXFLAGS := $(subst -std=c++14,-std=c++0x,$(CXXFLAGS))
+               override CXXFLAGS := $(subst -std=c++11,-std=c++0x,$(CXXFLAGS))
        endif
 endif
 endif