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

Side by Side Diff: build/common.gypi

Issue 7574008: Specify stack size for win64 when linking d8. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 4 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
« SConstruct ('K') | « SConstruct ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 # LinkIncremental values: 129 # LinkIncremental values:
130 # 0 == default 130 # 0 == default
131 # 1 == /INCREMENTAL:NO 131 # 1 == /INCREMENTAL:NO
132 # 2 == /INCREMENTAL 132 # 2 == /INCREMENTAL
133 'LinkIncremental': '1', 133 'LinkIncremental': '1',
134 # SubSystem values: 134 # SubSystem values:
135 # 0 == not set 135 # 0 == not set
136 # 1 == /SUBSYSTEM:CONSOLE 136 # 1 == /SUBSYSTEM:CONSOLE
137 # 2 == /SUBSYSTEM:WINDOWS 137 # 2 == /SUBSYSTEM:WINDOWS
138 'SubSystem': '1', 138 'SubSystem': '1',
139 'conditions': [
140 ['target_arch=="x64"', {
141 'StackReserveSize': '2097152',
142 }],
143 ],
139 }, 144 },
140 }, 145 },
141 }, 146 },
142 }], # OS=="win" 147 }], # OS=="win"
143 ['OS=="mac"', { 148 ['OS=="mac"', {
144 'target_defaults': { 149 'target_defaults': {
145 'xcode_settings': { 150 'xcode_settings': {
146 'ALWAYS_SEARCH_USER_PATHS': 'NO', 151 'ALWAYS_SEARCH_USER_PATHS': 'NO',
147 'GCC_C_LANGUAGE_STANDARD': 'ansi', # -ansi 152 'GCC_C_LANGUAGE_STANDARD': 'ansi', # -ansi
148 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks 153 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks
(...skipping 25 matching lines...) Expand all
174 }, 179 },
175 'target_conditions': [ 180 'target_conditions': [
176 ['_type!="static_library"', { 181 ['_type!="static_library"', {
177 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 182 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
178 }], 183 }],
179 ], # target_conditions 184 ], # target_conditions
180 }, # target_defaults 185 }, # target_defaults
181 }], # OS=="mac" 186 }], # OS=="mac"
182 ], 187 ],
183 } 188 }
OLDNEW
« SConstruct ('K') | « SConstruct ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698