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

Side by Side Diff: SConstruct

Issue 10634: Some fixes in ARM simulator:... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 1 month 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/simulator-arm.h » ('j') | src/simulator-arm.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2008 the V8 project authors. All rights reserved. 1 # Copyright 2008 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 } 99 }
100 }, 100 },
101 'msvc': { 101 'msvc': {
102 'all': { 102 'all': {
103 'WARNINGFLAGS': ['/W3', '/WX', '/wd4355', '/wd4800'] 103 'WARNINGFLAGS': ['/W3', '/WX', '/wd4355', '/wd4800']
104 }, 104 },
105 'library:shared': { 105 'library:shared': {
106 'CPPDEFINES': ['BUILDING_V8_SHARED'] 106 'CPPDEFINES': ['BUILDING_V8_SHARED']
107 }, 107 },
108 'arch:arm': { 108 'arch:arm': {
109 'CPPDEFINES': ['ARM'] 109 'CPPDEFINES': ['ARM'],
110 'WARNINGFLAGS': ['/wd4996']
iposva 2008/11/12 20:16:42 Is it possible to add an explanation why we are hi
110 }, 111 },
111 'disassembler:on': { 112 'disassembler:on': {
112 'CPPDEFINES': ['ENABLE_DISASSEMBLER'] 113 'CPPDEFINES': ['ENABLE_DISASSEMBLER']
113 } 114 }
114 } 115 }
115 } 116 }
116 117
117 118
118 JSCRE_EXTRA_FLAGS = { 119 JSCRE_EXTRA_FLAGS = {
119 'gcc': { 120 'gcc': {
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 # version of scons. Also, there's a bug in some revisions that 551 # version of scons. Also, there's a bug in some revisions that
551 # doesn't allow this flag to be set, so we swallow any exceptions. 552 # doesn't allow this flag to be set, so we swallow any exceptions.
552 # Lovely. 553 # Lovely.
553 try: 554 try:
554 SetOption('warn', 'no-deprecated') 555 SetOption('warn', 'no-deprecated')
555 except: 556 except:
556 pass 557 pass
557 558
558 559
559 Build() 560 Build()
OLDNEW
« no previous file with comments | « no previous file | src/simulator-arm.h » ('j') | src/simulator-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698