| OLD | NEW |
| 1 # Copyright 2010 the V8 project authors. All rights reserved. | 1 # Copyright 2010 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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 }, | 570 }, |
| 571 }, | 571 }, |
| 572 'pgo:instrument': { | 572 'pgo:instrument': { |
| 573 'LINKFLAGS': ['/LTCG:PGI'] | 573 'LINKFLAGS': ['/LTCG:PGI'] |
| 574 }, | 574 }, |
| 575 'pgo:optimize': { | 575 'pgo:optimize': { |
| 576 'LINKFLAGS': ['/LTCG:PGO'] | 576 'LINKFLAGS': ['/LTCG:PGO'] |
| 577 } | 577 } |
| 578 }, | 578 }, |
| 579 'arch:ia32': { | 579 'arch:ia32': { |
| 580 'CPPDEFINES': ['V8_TARGET_ARCH_IA32'], | 580 'CPPDEFINES': ['V8_TARGET_ARCH_IA32', 'WIN32'], |
| 581 'LINKFLAGS': ['/MACHINE:X86'] | 581 'LINKFLAGS': ['/MACHINE:X86'] |
| 582 }, | 582 }, |
| 583 'arch:x64': { | 583 'arch:x64': { |
| 584 'CPPDEFINES': ['V8_TARGET_ARCH_X64'], | 584 'CPPDEFINES': ['V8_TARGET_ARCH_X64'], |
| 585 'LINKFLAGS': ['/MACHINE:X64', '/STACK:2091752'] | 585 'LINKFLAGS': ['/MACHINE:X64', '/STACK:2091752'] |
| 586 }, | 586 }, |
| 587 'mode:debug': { | 587 'mode:debug': { |
| 588 'CCFLAGS': ['/Od'], | 588 'CCFLAGS': ['/Od'], |
| 589 'LINKFLAGS': ['/DEBUG'], | 589 'LINKFLAGS': ['/DEBUG'], |
| 590 'CPPDEFINES': ['DEBUG'], | 590 'CPPDEFINES': ['DEBUG'], |
| (...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1183 # version of scons. Also, there's a bug in some revisions that | 1183 # version of scons. Also, there's a bug in some revisions that |
| 1184 # doesn't allow this flag to be set, so we swallow any exceptions. | 1184 # doesn't allow this flag to be set, so we swallow any exceptions. |
| 1185 # Lovely. | 1185 # Lovely. |
| 1186 try: | 1186 try: |
| 1187 SetOption('warn', 'no-deprecated') | 1187 SetOption('warn', 'no-deprecated') |
| 1188 except: | 1188 except: |
| 1189 pass | 1189 pass |
| 1190 | 1190 |
| 1191 | 1191 |
| 1192 Build() | 1192 Build() |
| OLD | NEW |