From 99b37c64f90ed1de0e8f56d7dc0133c68a36dbe8 Mon Sep 17 00:00:00 2001 From: Mike Morris Date: Tue, 12 May 2015 17:07:54 -0400 Subject: compile OS X with --std=c++1y because Travis uses Apple LLVM 6.0 and full c++14 support landed in 6.1 https://developer.apple.com/library/ios/documentation/DeveloperTools/Conceptual/WhatsNewXcode/WhatsNewXcode.pdf --- binding.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'binding.gyp') diff --git a/binding.gyp b/binding.gyp index 2fbd8f4d47..1f0f81c1fe 100644 --- a/binding.gyp +++ b/binding.gyp @@ -28,11 +28,11 @@ ['OS=="mac"', { 'xcode_settings': { 'CLANG_CXX_LIBRARY': 'libc++', - 'CLANG_CXX_LANGUAGE_STANDARD': 'c++14', 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES', 'GCC_ENABLE_CPP_RTTI': 'YES', 'OTHER_CPLUSPLUSFLAGS': [ + '-std=c++1y', '-Werror', '-Wall', '-Wextra', -- cgit v1.2.1