From b6ad53054f1c235d05cce59ac8fb2146c11836bf Mon Sep 17 00:00:00 2001 From: "ager@chromium.org" Date: Thu, 11 Sep 2008 18:46:29 +0000 Subject: [PATCH] Add back the CCFLAGS to the CXXFLAGS. Leaving them out caused V8 to be build without optimization flags. Review URL: http://codereview.chromium.org/1947 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@288 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 82be921..31802eb 100644 --- a/SConstruct +++ b/SConstruct @@ -45,7 +45,7 @@ LIBRARY_FLAGS = { 'DIALECTFLAGS': ['-ansi'], 'CCFLAGS': ['$DIALECTFLAGS', '$WARNINGFLAGS', '-fno-strict-aliasing'], - 'CXXFLAGS': ['-fno-rtti', '-fno-exceptions'], + 'CXXFLAGS': ['$CCFLAGS', '-fno-rtti', '-fno-exceptions'], 'LIBS': ['pthread'] }, 'mode:debug': { -- 2.7.4