OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 }, | 62 }, |
63 'objectprint:on': { | 63 'objectprint:on': { |
64 'CPPDEFINES': ['OBJECT_PRINT'], | 64 'CPPDEFINES': ['OBJECT_PRINT'], |
65 }, | 65 }, |
66 'debuggersupport:on': { | 66 'debuggersupport:on': { |
67 'CPPDEFINES': ['ENABLE_DEBUGGER_SUPPORT'], | 67 'CPPDEFINES': ['ENABLE_DEBUGGER_SUPPORT'], |
68 }, | 68 }, |
69 'inspector:on': { | 69 'inspector:on': { |
70 'CPPDEFINES': ['INSPECTOR'], | 70 'CPPDEFINES': ['INSPECTOR'], |
71 }, | 71 }, |
72 'fasttls:on': { | 72 'fasttls:off': { |
73 'CPPDEFINES': ['V8_FAST_TLS'], | 73 'CPPDEFINES': ['V8_NO_FAST_TLS'], |
74 }, | 74 }, |
75 'liveobjectlist:on': { | 75 'liveobjectlist:on': { |
76 'CPPDEFINES': ['ENABLE_DEBUGGER_SUPPORT', 'INSPECTOR', | 76 'CPPDEFINES': ['ENABLE_DEBUGGER_SUPPORT', 'INSPECTOR', |
77 'LIVE_OBJECT_LIST', 'OBJECT_PRINT'], | 77 'LIVE_OBJECT_LIST', 'OBJECT_PRINT'], |
78 } | 78 } |
79 }, | 79 }, |
80 'gcc': { | 80 'gcc': { |
81 'all': { | 81 'all': { |
82 'CCFLAGS': ['$DIALECTFLAGS', '$WARNINGFLAGS'], | 82 'CCFLAGS': ['$DIALECTFLAGS', '$WARNINGFLAGS'], |
83 'CXXFLAGS': ['-fno-rtti', '-fno-exceptions'], | 83 'CXXFLAGS': ['-fno-rtti', '-fno-exceptions'], |
(...skipping 1380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1464 # version of scons. Also, there's a bug in some revisions that | 1464 # version of scons. Also, there's a bug in some revisions that |
1465 # doesn't allow this flag to be set, so we swallow any exceptions. | 1465 # doesn't allow this flag to be set, so we swallow any exceptions. |
1466 # Lovely. | 1466 # Lovely. |
1467 try: | 1467 try: |
1468 SetOption('warn', 'no-deprecated') | 1468 SetOption('warn', 'no-deprecated') |
1469 except: | 1469 except: |
1470 pass | 1470 pass |
1471 | 1471 |
1472 | 1472 |
1473 Build() | 1473 Build() |
OLD | NEW |