Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: build/toolchain.gypi

Issue 432863002: Only activate SSE2 by default on ia32 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 'WIN32', 453 'WIN32',
454 ], 454 ],
455 # 4351: VS 2005 and later are warning us that they've fixed a bug 455 # 4351: VS 2005 and later are warning us that they've fixed a bug
456 # present in VS 2003 and earlier. 456 # present in VS 2003 and earlier.
457 'msvs_disabled_warnings': [4351], 457 'msvs_disabled_warnings': [4351],
458 'msvs_configuration_attributes': { 458 'msvs_configuration_attributes': {
459 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', 459 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)',
460 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', 460 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
461 'CharacterSet': '1', 461 'CharacterSet': '1',
462 }, 462 },
463 }],
464 ['OS=="win" and v8_target_arch=="ia32"', {
463 'msvs_settings': { 465 'msvs_settings': {
464 'VCCLCompilerTool': { 466 'VCCLCompilerTool': {
465 # Ensure no surprising artifacts from 80bit double math with x86. 467 # Ensure no surprising artifacts from 80bit double math with x86.
466 'AdditionalOptions': ['/arch:SSE2'], 468 'AdditionalOptions': ['/arch:SSE2'],
467 }, 469 },
468 }, 470 },
469 }], 471 }],
470 ['OS=="win" and v8_enable_prof==1', { 472 ['OS=="win" and v8_enable_prof==1', {
471 'msvs_settings': { 473 'msvs_settings': {
472 'VCLinkerTool': { 474 'VCLinkerTool': {
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 'OptimizeReferences': '2', 841 'OptimizeReferences': '2',
840 'EnableCOMDATFolding': '2', 842 'EnableCOMDATFolding': '2',
841 }, 843 },
842 }, 844 },
843 }], # OS=="win" 845 }], # OS=="win"
844 ], # conditions 846 ], # conditions
845 }, # Release 847 }, # Release
846 }, # configurations 848 }, # configurations
847 }, # target_defaults 849 }, # target_defaults
848 } 850 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698