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

Unified Diff: SConstruct

Issue 6696112: Fast TLS support.
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/isolate.h » ('j') | src/platform.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: SConstruct
diff --git a/SConstruct b/SConstruct
index b432f5e75510bce87372e06198a1eae9a5df654e..edea9bdfa4d342236a8ee5430a173918bf337184 100644
--- a/SConstruct
+++ b/SConstruct
@@ -128,6 +128,9 @@ LIBRARY_FLAGS = {
'inspector:on': {
'CPPDEFINES': ['INSPECTOR'],
},
+ 'fasttls:on': {
+ 'CPPDEFINES': ['V8_FAST_TLS'],
+ },
'liveobjectlist:on': {
'CPPDEFINES': ['ENABLE_DEBUGGER_SUPPORT', 'INSPECTOR',
'LIVE_OBJECT_LIST', 'OBJECT_PRINT'],
@@ -785,6 +788,11 @@ SIMPLE_OPTIONS = {
'default': 'off',
'help': 'enable the disassembler to inspect generated code'
},
+ 'fasttls': {
+ 'values': ['on', 'off'],
+ 'default': 'on',
+ '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.
+ },
'sourcesignatures': {
'values': ['MD5', 'timestamp'],
'default': 'MD5',
« no previous file with comments | « no previous file | src/isolate.h » ('j') | src/platform.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698