3 'visibility%': 'hidden', # V8's visibility setting
4 'target_arch%': 'ia32', # set v8's target architecture
5 'host_arch%': 'ia32', # set v8's host architecture
6 'want_separate_host_toolset': 0, # V8 should not build target and host
7 'library%': 'static_library', # allow override to 'shared_library' for DLL/.so builds
8 'component%': 'static_library', # NB. these names match with what V8 expects
9 'msvs_multi_core_compile': '0', # we do enable multicore compiles, but not using the V8 way
10 'gcc_version%': 'unknown',
14 # Enable V8's post-mortem debugging only on unix flavors.
18 'v8_postmortem_support': 'false'
21 'v8_postmortem_support': 'true'
27 'default_configuration': 'Release',
30 'defines': [ 'DEBUG', '_DEBUG' ],
31 'cflags': [ '-g', '-O0' ],
33 ['target_arch=="x64"', {
34 'msvs_configuration_platform': 'x64',
39 'RuntimeLibrary': 1, # static debug
40 'Optimization': 0, # /Od, no optimization
41 'MinimalRebuild': 'false',
42 'OmitFramePointers': 'false',
43 'BasicRuntimeChecks': 3, # /RTC1
46 'LinkIncremental': 2, # enable incremental linking
50 'GCC_OPTIMIZATION_LEVEL': '0', # stop gyp from defaulting to -Os
54 'cflags': [ '-O3', '-ffunction-sections', '-fdata-sections' ],
56 ['target_arch=="x64"', {
57 'msvs_configuration_platform': 'x64',
60 # pull in V8's postmortem metadata
61 'ldflags': [ '-Wl,-z,allextract' ]
63 # Doesn't work with the Solaris linker.
64 'ldflags': [ '-Wl,--gc-sections' ],
66 ['clang == 0 and gcc_version >= 40', {
67 'cflags': [ '-fno-tree-vrp' ], # Work around compiler bug.
69 ['clang == 0 and gcc_version <= 44', {
70 'cflags': [ '-fno-tree-sink' ], # Work around compiler bug.
72 ['OS!="mac" and OS!="win"', {
73 'cflags': [ '-fno-omit-frame-pointer' ],
78 'RuntimeLibrary': 0, # static release
79 'Optimization': 3, # /Ox, full optimization
80 'FavorSizeOrSpeed': 1, # /Ot, favour speed over size
81 'InlineFunctionExpansion': 2, # /Ob2, inline anything eligible
82 'WholeProgramOptimization': 'true', # /GL, whole program optimization, needed for LTCG
83 'OmitFramePointers': 'true',
84 'EnableFunctionLevelLinking': 'true',
85 'EnableIntrinsicFunctions': 'true',
86 'RuntimeTypeInfo': 'false',
87 'ExceptionHandling': '0',
88 'AdditionalOptions': [
89 '/MP', # compile across multiple CPUs
93 'AdditionalOptions': [
94 '/LTCG', # link time code generation
98 'LinkTimeCodeGeneration': 1, # link-time code generation
99 'OptimizeReferences': 2, # /OPT:REF
100 'EnableCOMDATFolding': 2, # /OPT:ICF
101 'LinkIncremental': 1, # disable incremental linking
107 'VCCLCompilerTool': {
108 'StringPooling': 'true', # pool string literals
109 'DebugInformationFormat': 3, # Generate a PDB
111 'BufferSecurityCheck': 'true',
112 'ExceptionHandling': 1, # /EHsc
113 'SuppressStartupBanner': 'true',
114 'WarnAsError': 'false',
120 ['target_arch=="x64"', {
121 'TargetMachine' : 17 # /MACHINE:X64
124 'GenerateDebugInformation': 'true',
125 'RandomizedBaseAddress': 2, # enable ASLR
126 'DataExecutionPrevention': 2, # enable DEP
127 'AllowIsolation': 'true',
128 'SuppressStartupBanner': 'true',
129 'target_conditions': [
130 ['_type=="executable"', {
131 'SubSystem': 1, # console executable
136 'msvs_disabled_warnings': [4351, 4355, 4800],
139 'msvs_cygwin_shell': 0, # prevent actions from trying to use cygwin
142 # we don't really want VC++ warning us about
143 # how dangerous C functions are...
144 '_CRT_SECURE_NO_DEPRECATE',
145 # ... or that C implementations shouldn't use
147 '_CRT_NONSTDC_NO_DEPRECATE',
148 'BUILDING_V8_SHARED=1',
149 'BUILDING_UV_SHARED=1',
152 [ 'OS in "linux freebsd openbsd solaris"', {
153 'cflags': [ '-pthread', ],
154 'ldflags': [ '-pthread' ],
156 [ 'OS in "linux freebsd openbsd solaris android"', {
157 'cflags': [ '-Wall', '-Wextra', '-Wno-unused-parameter', ],
158 'cflags_cc': [ '-fno-rtti', '-fno-exceptions' ],
159 'ldflags': [ '-rdynamic' ],
160 'target_conditions': [
161 ['_type=="static_library"', {
162 'standalone_static_library': 1, # disable thin archive which needs binutils >= 2.19
166 [ 'target_arch=="ia32"', {
167 'cflags': [ '-m32' ],
168 'ldflags': [ '-m32' ],
170 [ 'target_arch=="x64"', {
171 'cflags': [ '-m64' ],
172 'ldflags': [ '-m64' ],
175 'cflags': [ '-pthreads' ],
176 'ldflags': [ '-pthreads' ],
177 'cflags!': [ '-pthread' ],
178 'ldflags!': [ '-pthread' ],
183 'defines': ['_GLIBCXX_USE_C99_MATH'],
184 'libraries': [ '-llog' ],
187 'defines': ['_DARWIN_USE_64_BIT_INODE=1'],
189 'ALWAYS_SEARCH_USER_PATHS': 'NO',
190 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks
191 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic
192 # (Equivalent to -fPIC)
193 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions
194 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti
195 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings
196 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
197 'PREBINDING': 'NO', # No -Wl,-prebind
198 'MACOSX_DEPLOYMENT_TARGET': '10.5', # -mmacosx-version-min=10.5
199 'USE_HEADERMAP': 'NO',
201 '-fno-strict-aliasing',
207 '-Wno-unused-parameter',
210 'target_conditions': [
211 ['_type!="static_library"', {
212 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
216 ['target_arch=="ia32"', {
217 'xcode_settings': {'ARCHS': ['i386']},
219 ['target_arch=="x64"', {
220 'xcode_settings': {'ARCHS': ['x86_64']},
224 ['OS=="freebsd" and node_use_dtrace=="true"', {
225 'libraries': [ '-lelf' ],