From 175998fae0afeb321666d3f543b191a7e6bb6d51 Mon Sep 17 00:00:00 2001 From: John Abd-El-Malek Date: Thu, 16 Oct 2014 14:26:18 -0700 Subject: Fix standalone build on Linux and Mac. BUG=423883 R=scottmg@chromium.org Review URL: https://codereview.chromium.org/663633002 --- build/standalone.gypi | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/standalone.gypi b/build/standalone.gypi index 5a65fa5c8e..d335f05e49 100644 --- a/build/standalone.gypi +++ b/build/standalone.gypi @@ -147,8 +147,10 @@ '-Wall', '-W', '-Wno-unused-parameter', - '-pthread', '-fno-exceptions', + '-pthread', + '-fno-exceptions', '-fvisibility=hidden', + '-std=gnu++0x', ], 'cflags_cc': [ '-Wnon-virtual-dtor', @@ -199,6 +201,7 @@ }, 'xcode_settings': { 'ALWAYS_SEARCH_USER_PATHS': 'NO', + 'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++11', 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic # (Equivalent to -fPIC) -- cgit v1.2.3