Commit d7599384 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Changed optimization from /Ox to the (more) commonly used /O2 (which includes

/GF) in both SCons and Visual Studio build. There is not mesurable difference
neither in speed nor in code size.

Added whole program optimization to the SCons release build. This clutters the
linking of the samples a little with the option /LTCG. This option is not
strictly needed for linking, but if it is not specified the linker complaints
as it can see object files compiled with /GL and then restarts itself with
/LTCG which dosen't look very pretty.
Review URL: http://codereview.chromium.org/5664

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@407 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 864ebf14
...@@ -77,8 +77,9 @@ LIBRARY_FLAGS = { ...@@ -77,8 +77,9 @@ LIBRARY_FLAGS = {
'LINKFLAGS': ['/DEBUG'] 'LINKFLAGS': ['/DEBUG']
}, },
'mode:release': { 'mode:release': {
'CCFLAGS': ['/Ox', '/MT', '/GF'], 'CCFLAGS': ['/O2', '/MT', '/GL'],
'LINKFLAGS': ['/OPT:REF', '/OPT:ICF'] 'LINKFLAGS': ['/OPT:REF', '/OPT:ICF', '/LTCG'],
'ARFLAGS': ['/LTCG']
} }
} }
} }
...@@ -205,8 +206,8 @@ SAMPLE_FLAGS = { ...@@ -205,8 +206,8 @@ SAMPLE_FLAGS = {
'LINKFLAGS': ['/MAP'] 'LINKFLAGS': ['/MAP']
}, },
'mode:release': { 'mode:release': {
'CCFLAGS': ['/Ox', '/MT', '/GF'], 'CCFLAGS': ['/O2', '/MT'],
'LINKFLAGS': ['/OPT:REF', '/OPT:ICF'] 'LINKFLAGS': ['/OPT:REF', '/OPT:ICF', '/LTCG']
}, },
'mode:debug': { 'mode:debug': {
'CCFLAGS': ['/Od', '/MTd'], 'CCFLAGS': ['/Od', '/MTd'],
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
RuntimeLibrary="0" RuntimeLibrary="0"
Optimization="3" Optimization="2"
InlineFunctionExpansion="2" InlineFunctionExpansion="2"
EnableIntrinsicFunctions="true" EnableIntrinsicFunctions="true"
FavorSizeOrSpeed="0" FavorSizeOrSpeed="0"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment