https://bugs.webkit.org/show_bug.cgi?id=120782
Reviewed by Andreas Kling.
Source/ThirdParty:
Set CLANG_CXX_LANGUAGE_STANDARD to gnu++0x.
* gtest/xcode/Config/General.xcconfig:
Source/WebCore:
Pass -std=gnu++11 when preprocessing wtf/Platform.h.
* DerivedSources.make:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@155135
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-09-05 Anders Carlsson <andersca@apple.com>
+
+ Enable C++11 wherever we build C++ files that include wtf/Platform.h
+ https://bugs.webkit.org/show_bug.cgi?id=120782
+
+ Reviewed by Andreas Kling.
+
+ Set CLANG_CXX_LANGUAGE_STANDARD to gnu++0x.
+
+ * gtest/xcode/Config/General.xcconfig:
+
2013-08-20 Alex Christensen <achristensen@apple.com>
Use PlatformArchitecture to distinguish between 32-bit and 64-bit builds on Windows.
// Force C99 dialect
GCC_C_LANGUAGE_STANDARD = c99
+// Force C++11
+CLANG_CXX_LANGUAGE_STANDARD = gnu++0x;
+
// not sure why apple defaults this on, but it's pretty risky
ALWAYS_SEARCH_USER_PATHS = NO
+2013-09-05 Anders Carlsson <andersca@apple.com>
+
+ Enable C++11 wherever we build C++ files that include wtf/Platform.h
+ https://bugs.webkit.org/show_bug.cgi?id=120782
+
+ Reviewed by Andreas Kling.
+
+ Pass -std=gnu++11 when preprocessing wtf/Platform.h.
+
+ * DerivedSources.make:
+
2013-09-05 Joseph Pecoraro <pecoraro@apple.com>
Web Inspector: Breakpoint Actions
SDK_FLAGS=-isysroot $(SDKROOT)
endif
-ifeq ($(shell $(CC) -x c++ -E -P -dM $(SDK_FLAGS) $(FRAMEWORK_FLAGS) $(HEADER_FLAGS) -include "wtf/Platform.h" /dev/null | grep ENABLE_ORIENTATION_EVENTS | cut -d' ' -f3), 1)
+ifeq ($(shell $(CC) -std=gnu++11 -x c++ -E -P -dM $(SDK_FLAGS) $(FRAMEWORK_FLAGS) $(HEADER_FLAGS) -include "wtf/Platform.h" /dev/null | grep ENABLE_ORIENTATION_EVENTS | cut -d' ' -f3), 1)
ENABLE_ORIENTATION_EVENTS = 1
endif