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

Side by Side Diff: build/toolchain.gypi

Issue 424763002: Activate SSE2 for all Visual Studio builds (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Make merge clean 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 }], # v8_target_arch=="x32" 445 }], # v8_target_arch=="x32"
446 ['OS=="win"', { 446 ['OS=="win"', {
447 'defines': [ 447 'defines': [
448 'WIN32', 448 'WIN32',
449 ], 449 ],
450 'msvs_configuration_attributes': { 450 'msvs_configuration_attributes': {
451 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', 451 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)',
452 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', 452 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)',
453 'CharacterSet': '1', 453 'CharacterSet': '1',
454 }, 454 },
455 'msvs_settings': {
456 'VCCLCompilerTool': {
457 # Ensure no surprising artifacts from 80bit double math with x86.
458 'AdditionalOptions': ['/arch:SSE2'],
459 },
460 },
455 }], 461 }],
456 ['OS=="win" and v8_enable_prof==1', { 462 ['OS=="win" and v8_enable_prof==1', {
457 'msvs_settings': { 463 'msvs_settings': {
458 'VCLinkerTool': { 464 'VCLinkerTool': {
459 'GenerateMapFile': 'true', 465 'GenerateMapFile': 'true',
460 }, 466 },
461 }, 467 },
462 }], 468 }],
463 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ 469 ['(OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \
464 or OS=="netbsd" or OS=="mac" or OS=="android" or OS=="qnx") and \ 470 or OS=="netbsd" or OS=="mac" or OS=="android" or OS=="qnx") and \
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 'OptimizeReferences': '2', 831 'OptimizeReferences': '2',
826 'EnableCOMDATFolding': '2', 832 'EnableCOMDATFolding': '2',
827 }, 833 },
828 }, 834 },
829 }], # OS=="win" 835 }], # OS=="win"
830 ], # conditions 836 ], # conditions
831 }, # Release 837 }, # Release
832 }, # configurations 838 }, # configurations
833 }, # target_defaults 839 }, # target_defaults
834 } 840 }
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