4 'werror': '', # Turn off -Werror in V8 build.
5 'visibility%': 'hidden', # V8's visibility setting
6 'target_arch%': 'ia32', # set v8's target architecture
7 'host_arch%': 'ia32', # set v8's host architecture
8 'want_separate_host_toolset%': 0, # V8 should not build target and host
9 'library%': 'static_library', # allow override to 'shared_library' for DLL/.so builds
10 'component%': 'static_library', # NB. these names match with what V8 expects
11 'msvs_multi_core_compile': '0', # we do enable multicore compiles, but not using the V8 way
15 'uv_library%': 'static_library',
17 # Default to -O0 for debug builds.
18 'v8_optimized_debug%': 0,
20 # Enable disassembler for `--print-code` v8 options
21 'v8_enable_disassembler': 1,
23 # Don't bake anything extra into the snapshot.
24 'v8_use_external_startup_data%': 0,
26 # Disable V8's post-mortem debugging; frequently broken and hardly used.
27 'v8_postmortem_support%': 'false',
35 ['GENERATOR == "ninja" or OS== "mac"', {
36 'OBJ_DIR': '<(PRODUCT_DIR)/obj',
37 'V8_BASE': '<(PRODUCT_DIR)/libv8_base.a',
39 'OBJ_DIR': '<(PRODUCT_DIR)/obj.target',
40 'V8_BASE': '<(PRODUCT_DIR)/obj.target/deps/v8/tools/gyp/libv8_base.a',
51 'default_configuration': 'Release',
55 'v8_enable_handle_zapping%': 1,
57 'defines': [ 'DEBUG', '_DEBUG' ],
58 'cflags': [ '-g', '-O0' ],
60 ['target_arch=="x64"', {
61 'msvs_configuration_platform': 'x64',
66 'RuntimeLibrary': 1, # static debug
67 'Optimization': 0, # /Od, no optimization
68 'MinimalRebuild': 'false',
69 'OmitFramePointers': 'false',
70 'BasicRuntimeChecks': 3, # /RTC1
73 'LinkIncremental': 2, # enable incremental linking
77 'GCC_OPTIMIZATION_LEVEL': '0', # stop gyp from defaulting to -Os
82 'v8_enable_handle_zapping%': 0,
84 'cflags': [ '-O3', '-ffunction-sections', '-fdata-sections' ],
86 ['target_arch=="x64"', {
87 'msvs_configuration_platform': 'x64',
90 # pull in V8's postmortem metadata
91 'ldflags': [ '-Wl,-z,allextract' ]
93 ['OS!="mac" and OS!="win"', {
94 'cflags': [ '-fno-omit-frame-pointer' ],
99 'RuntimeLibrary': 0, # static release
100 'Optimization': 3, # /Ox, full optimization
101 'FavorSizeOrSpeed': 1, # /Ot, favour speed over size
102 'InlineFunctionExpansion': 2, # /Ob2, inline anything eligible
103 'WholeProgramOptimization': 'true', # /GL, whole program optimization, needed for LTCG
104 'OmitFramePointers': 'true',
105 'EnableFunctionLevelLinking': 'true',
106 'EnableIntrinsicFunctions': 'true',
107 'RuntimeTypeInfo': 'false',
108 'AdditionalOptions': [
109 '/MP', # compile across multiple CPUs
113 'AdditionalOptions': [
114 '/LTCG', # link time code generation
118 'LinkTimeCodeGeneration': 1, # link-time code generation
119 'OptimizeReferences': 2, # /OPT:REF
120 'EnableCOMDATFolding': 2, # /OPT:ICF
121 'LinkIncremental': 1, # disable incremental linking
126 # Forcibly disable -Werror. We support a wide range of compilers, it's
127 # simply not feasible to squelch all warnings, never mind that the
128 # libraries in deps/ are not under our control.
129 'cflags!': ['-Werror'],
131 'VCCLCompilerTool': {
132 'StringPooling': 'true', # pool string literals
133 'DebugInformationFormat': 3, # Generate a PDB
135 'BufferSecurityCheck': 'true',
136 'ExceptionHandling': 0, # /EHsc
137 'SuppressStartupBanner': 'true',
138 'WarnAsError': 'false',
144 ['target_arch=="x64"', {
145 'TargetMachine' : 17 # /MACHINE:X64
148 'GenerateDebugInformation': 'true',
149 'RandomizedBaseAddress': 2, # enable ASLR
150 'DataExecutionPrevention': 2, # enable DEP
151 'AllowIsolation': 'true',
152 'SuppressStartupBanner': 'true',
153 'target_conditions': [
154 ['_type=="executable"', {
155 'SubSystem': 1, # console executable
160 'msvs_disabled_warnings': [4351, 4355, 4800],
164 '-fno-omit-frame-pointer',
165 '-fsanitize=address',
166 '-w', # http://crbug.com/162783
168 'cflags_cc+': [ '-gline-tables-only' ],
169 'cflags!': [ '-fomit-frame-pointer' ],
170 'ldflags': [ '-fsanitize=address' ],
173 'msvs_cygwin_shell': 0, # prevent actions from trying to use cygwin
176 # we don't really want VC++ warning us about
177 # how dangerous C functions are...
178 '_CRT_SECURE_NO_DEPRECATE',
179 # ... or that C implementations shouldn't use
181 '_CRT_NONSTDC_NO_DEPRECATE',
182 # Make sure the STL doesn't try to use exceptions
184 'BUILDING_V8_SHARED=1',
185 'BUILDING_UV_SHARED=1',
188 [ 'OS in "linux freebsd openbsd solaris"', {
189 'cflags': [ '-pthread', ],
190 'ldflags': [ '-pthread' ],
192 [ 'OS in "linux freebsd openbsd solaris android"', {
193 'cflags': [ '-Wall', '-Wextra', '-Wno-unused-parameter', ],
194 'cflags_cc': [ '-fno-rtti', '-fno-exceptions', '-std=gnu++0x' ],
195 'ldflags': [ '-rdynamic' ],
196 'target_conditions': [
197 ['_type=="static_library"', {
198 'standalone_static_library': 1, # disable thin archive which needs binutils >= 2.19
202 [ 'target_arch=="ia32"', {
203 'cflags': [ '-m32' ],
204 'ldflags': [ '-m32' ],
206 [ 'target_arch=="x32"', {
207 'cflags': [ '-mx32' ],
208 'ldflags': [ '-mx32' ],
210 [ 'target_arch=="x64"', {
211 'cflags': [ '-m64' ],
212 'ldflags': [ '-m64' ],
215 'cflags': [ '-pthreads' ],
216 'ldflags': [ '-pthreads' ],
217 'cflags!': [ '-pthread' ],
218 'ldflags!': [ '-pthread' ],
223 'defines': ['_GLIBCXX_USE_C99_MATH'],
224 'libraries': [ '-llog' ],
227 'defines': ['_DARWIN_USE_64_BIT_INODE=1'],
229 'ALWAYS_SEARCH_USER_PATHS': 'NO',
230 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks
231 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic
232 # (Equivalent to -fPIC)
233 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions
234 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
235 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings
236 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
237 'PREBINDING': 'NO', # No -Wl,-prebind
238 'MACOSX_DEPLOYMENT_TARGET': '10.5', # -mmacosx-version-min=10.5
239 'USE_HEADERMAP': 'NO',
241 '-fno-strict-aliasing',
247 '-Wno-unused-parameter',
250 'target_conditions': [
251 ['_type!="static_library"', {
252 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
256 ['target_arch=="ia32"', {
257 'xcode_settings': {'ARCHS': ['i386']},
259 ['target_arch=="x64"', {
260 'xcode_settings': {'ARCHS': ['x86_64']},
264 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
265 'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++0x', # -std=gnu++0x
270 ['OS=="freebsd" and node_use_dtrace=="true"', {
271 'libraries': [ '-lelf' ],
275 '-Wl,--export-dynamic',