Reviewers: Søren Gjesse, Description: Add back the CCFLAGS to the CXXFLAGS. Leaving them out caused V8 to be build without optimization flags.
Please review this at http://codereview.chromium.org/1947 Affected files: M SConstruct Index: SConstruct =================================================================== --- SConstruct (revision 287) +++ SConstruct (working copy) @@ -45,7 +45,7 @@ 'DIALECTFLAGS': ['-ansi'], 'CCFLAGS': ['$DIALECTFLAGS', '$WARNINGFLAGS', '-fno-strict-aliasing'], - 'CXXFLAGS': ['-fno-rtti', '-fno-exceptions'], + 'CXXFLAGS': ['$CCFLAGS', '-fno-rtti', '-fno-exceptions'], 'LIBS': ['pthread'] }, 'mode:debug': { --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
