Chromium Code Reviews| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 121 }, | 121 }, |
| 122 'profilingsupport:on': { | 122 'profilingsupport:on': { |
| 123 'CPPDEFINES': ['ENABLE_VMSTATE_TRACKING', 'ENABLE_LOGGING_AND_PROFILING' ], | 123 'CPPDEFINES': ['ENABLE_VMSTATE_TRACKING', 'ENABLE_LOGGING_AND_PROFILING' ], |
| 124 }, | 124 }, |
| 125 'debuggersupport:on': { | 125 'debuggersupport:on': { |
| 126 'CPPDEFINES': ['ENABLE_DEBUGGER_SUPPORT'], | 126 'CPPDEFINES': ['ENABLE_DEBUGGER_SUPPORT'], |
| 127 }, | 127 }, |
| 128 'inspector:on': { | 128 'inspector:on': { |
| 129 'CPPDEFINES': ['INSPECTOR'], | 129 'CPPDEFINES': ['INSPECTOR'], |
| 130 }, | 130 }, |
| 131 'fasttls:on': { | |
| 132 'CPPDEFINES': ['V8_FAST_TLS'], | |
| 133 }, | |
| 131 'liveobjectlist:on': { | 134 'liveobjectlist:on': { |
| 132 'CPPDEFINES': ['ENABLE_DEBUGGER_SUPPORT', 'INSPECTOR', | 135 'CPPDEFINES': ['ENABLE_DEBUGGER_SUPPORT', 'INSPECTOR', |
| 133 'LIVE_OBJECT_LIST', 'OBJECT_PRINT'], | 136 'LIVE_OBJECT_LIST', 'OBJECT_PRINT'], |
| 134 } | 137 } |
| 135 }, | 138 }, |
| 136 'gcc': { | 139 'gcc': { |
| 137 'all': { | 140 'all': { |
| 138 'CCFLAGS': ['$DIALECTFLAGS', '$WARNINGFLAGS'], | 141 'CCFLAGS': ['$DIALECTFLAGS', '$WARNINGFLAGS'], |
| 139 'CXXFLAGS': ['$CCFLAGS', '-fno-rtti', '-fno-exceptions'], | 142 'CXXFLAGS': ['$CCFLAGS', '-fno-rtti', '-fno-exceptions'], |
| 140 }, | 143 }, |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 778 'unalignedaccesses': { | 781 'unalignedaccesses': { |
| 779 'values': ['default', 'on', 'off'], | 782 'values': ['default', 'on', 'off'], |
| 780 'default': 'default', | 783 'default': 'default', |
| 781 'help': 'set whether the ARM target supports unaligned accesses' | 784 'help': 'set whether the ARM target supports unaligned accesses' |
| 782 }, | 785 }, |
| 783 'disassembler': { | 786 'disassembler': { |
| 784 'values': ['on', 'off'], | 787 'values': ['on', 'off'], |
| 785 'default': 'off', | 788 'default': 'off', |
| 786 'help': 'enable the disassembler to inspect generated code' | 789 'help': 'enable the disassembler to inspect generated code' |
| 787 }, | 790 }, |
| 791 'fasttls': { | |
| 792 'values': ['on', 'off'], | |
| 793 'default': 'on', | |
| 794 'help': 'enable fast thread local storage support' | |
|
antonm
2011/03/25 16:44:44
maybe add something like 'if supported for the giv
Vitaly Repeshko
2011/03/27 15:54:48
Done.
| |
| 795 }, | |
| 788 'sourcesignatures': { | 796 'sourcesignatures': { |
| 789 'values': ['MD5', 'timestamp'], | 797 'values': ['MD5', 'timestamp'], |
| 790 'default': 'MD5', | 798 'default': 'MD5', |
| 791 'help': 'set how the build system detects file changes' | 799 'help': 'set how the build system detects file changes' |
| 792 }, | 800 }, |
| 793 'console': { | 801 'console': { |
| 794 'values': ['dumb', 'readline'], | 802 'values': ['dumb', 'readline'], |
| 795 'default': 'dumb', | 803 'default': 'dumb', |
| 796 'help': 'the console to use for the d8 shell' | 804 'help': 'the console to use for the d8 shell' |
| 797 }, | 805 }, |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1184 # version of scons. Also, there's a bug in some revisions that | 1192 # 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. | 1193 # doesn't allow this flag to be set, so we swallow any exceptions. |
| 1186 # Lovely. | 1194 # Lovely. |
| 1187 try: | 1195 try: |
| 1188 SetOption('warn', 'no-deprecated') | 1196 SetOption('warn', 'no-deprecated') |
| 1189 except: | 1197 except: |
| 1190 pass | 1198 pass |
| 1191 | 1199 |
| 1192 | 1200 |
| 1193 Build() | 1201 Build() |
| OLD | NEW |