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