From: ager@chromium.org Date: Thu, 11 Sep 2008 18:46:29 +0000 (+0000) Subject: Add back the CCFLAGS to the CXXFLAGS. Leaving them out caused V8 to X-Git-Tag: upstream/4.7.83~25385 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b6ad53054f1c235d05cce59ac8fb2146c11836bf;p=platform%2Fupstream%2Fv8.git 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 --- 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': {