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

Side by Side Diff: SConstruct

Issue 7350017: Make fast tls the default (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/d8.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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()
OLDNEW
« no previous file with comments | « no previous file | src/d8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698