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

Side by Side Diff: SConstruct

Issue 6624006: [Isolates] Fix build on 64-bit version of Windows with vs2008 (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: Created 9 years, 9 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 | src/isolate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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()
OLDNEW
« no previous file with comments | « no previous file | src/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698