Fix enum_types test on Linux
authorDaniel Malea <daniel.malea@intel.com>
Thu, 7 Mar 2013 20:13:11 +0000 (20:13 +0000)
committerDaniel Malea <daniel.malea@intel.com>
Thu, 7 Mar 2013 20:13:11 +0000 (20:13 +0000)
- Required flag "-std=c++11" needs to be set before including Makefile.rules

llvm-svn: 176644

lldb/test/lang/cpp/enum_types/Makefile

index 9724b7c..0e0f5d1 100644 (file)
@@ -2,8 +2,9 @@ LEVEL = ../../../make
 
 CXX_SOURCES := main.cpp
 
+CXXFLAGS += -std=c++11
+
 clean: OBJECTS+=$(wildcard main.d.*)
 
 include $(LEVEL)/Makefile.rules
 
-CXXFLAGS += -std=c++11