OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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() |
OLD | NEW |