Merge remote-tracking branch 'origin/v0.8'
[platform/upstream/nodejs.git] / common.gypi
1 {
2   'variables': {
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',
11     'clang%': 0,
12     'python%': 'python',
13
14     # Turn on optimizations that may trigger compiler bugs.
15     # Use at your own risk. Do *NOT* report bugs if this option is enabled.
16     'node_unsafe_optimizations%': 0,
17
18     # Enable V8's post-mortem debugging only on unix flavors.
19     'conditions': [
20       ['OS != "win"', {
21         'v8_postmortem_support': 'true'
22       }]
23     ],
24   },
25
26   'target_defaults': {
27     'default_configuration': 'Release',
28     'configurations': {
29       'Debug': {
30         'defines': [ 'DEBUG', '_DEBUG' ],
31         'cflags': [ '-g', '-O0' ],
32         'conditions': [
33           ['target_arch=="x64"', {
34             'msvs_configuration_platform': 'x64',
35           }],
36         ],
37         'msvs_settings': {
38           'VCCLCompilerTool': {
39             'RuntimeLibrary': 1, # static debug
40             'Optimization': 0, # /Od, no optimization
41             'MinimalRebuild': 'false',
42             'OmitFramePointers': 'false',
43             'BasicRuntimeChecks': 3, # /RTC1
44           },
45           'VCLinkerTool': {
46             'LinkIncremental': 2, # enable incremental linking
47           },
48         },
49         'xcode_settings': {
50           'GCC_OPTIMIZATION_LEVEL': '0', # stop gyp from defaulting to -Os
51         },
52       },
53       'Release': {
54         'conditions': [
55           ['target_arch=="x64"', {
56             'msvs_configuration_platform': 'x64',
57           }],
58           ['node_unsafe_optimizations==1', {
59             'cflags': [ '-O3', '-ffunction-sections', '-fdata-sections' ],
60             'ldflags': [ '-Wl,--gc-sections' ],
61           }, {
62             'cflags': [ '-O2', '-fno-strict-aliasing' ],
63             'cflags!': [ '-O3', '-fstrict-aliasing' ],
64             'conditions': [
65               # Required by the dtrace post-processor. Unfortunately,
66               # some gcc/binutils combos generate bad code when
67               # -ffunction-sections is enabled. Let's hope for the best.
68               ['OS=="solaris"', {
69                 'cflags': [ '-ffunction-sections', '-fdata-sections' ],
70               }, {
71                 'cflags!': [ '-ffunction-sections', '-fdata-sections' ],
72               }],
73               ['clang == 0 and gcc_version >= 40', {
74                 'cflags': [ '-fno-tree-vrp' ],
75               }],
76               ['clang == 0 and gcc_version <= 44', {
77                 'cflags': [ '-fno-tree-sink' ],
78               }],
79             ],
80           }],
81           ['OS=="solaris"', {
82             'cflags': [ '-fno-omit-frame-pointer' ],
83             # pull in V8's postmortem metadata
84             'ldflags': [ '-Wl,-z,allextract' ]
85           }],
86         ],
87         'msvs_settings': {
88           'VCCLCompilerTool': {
89             'RuntimeLibrary': 0, # static release
90             'Optimization': 3, # /Ox, full optimization
91             'FavorSizeOrSpeed': 1, # /Ot, favour speed over size
92             'InlineFunctionExpansion': 2, # /Ob2, inline anything eligible
93             'WholeProgramOptimization': 'true', # /GL, whole program optimization, needed for LTCG
94             'OmitFramePointers': 'true',
95             'EnableFunctionLevelLinking': 'true',
96             'EnableIntrinsicFunctions': 'true',
97             'RuntimeTypeInfo': 'false',
98             'ExceptionHandling': '0',
99             'AdditionalOptions': [
100               '/MP', # compile across multiple CPUs
101             ],
102           },
103           'VCLibrarianTool': {
104             'AdditionalOptions': [
105               '/LTCG', # link time code generation
106             ],
107           },
108           'VCLinkerTool': {
109             'LinkTimeCodeGeneration': 1, # link-time code generation
110             'OptimizeReferences': 2, # /OPT:REF
111             'EnableCOMDATFolding': 2, # /OPT:ICF
112             'LinkIncremental': 1, # disable incremental linking
113           },
114         },
115       }
116     },
117     'msvs_settings': {
118       'VCCLCompilerTool': {
119         'StringPooling': 'true', # pool string literals
120         'DebugInformationFormat': 3, # Generate a PDB
121         'WarningLevel': 3,
122         'BufferSecurityCheck': 'true',
123         'ExceptionHandling': 1, # /EHsc
124         'ImageHasSafeExceptionHandlers': 0, # /SAFESEH:NO
125         'SuppressStartupBanner': 'true',
126         'WarnAsError': 'false',
127       },
128       'VCLibrarianTool': {
129       },
130       'VCLinkerTool': {
131         'conditions': [
132           ['target_arch=="x64"', {
133             'TargetMachine' : 17 # /MACHINE:X64
134           }],
135         ],
136         'GenerateDebugInformation': 'true',
137         'RandomizedBaseAddress': 2, # enable ASLR
138         'DataExecutionPrevention': 2, # enable DEP
139         'AllowIsolation': 'true',
140         'SuppressStartupBanner': 'true',
141         'target_conditions': [
142           ['_type=="executable"', {
143             'SubSystem': 1, # console executable
144           }],
145         ],
146       },
147     },
148     'conditions': [
149       ['OS == "win"', {
150         'msvs_cygwin_shell': 0, # prevent actions from trying to use cygwin
151         'defines': [
152           'WIN32',
153           # we don't really want VC++ warning us about
154           # how dangerous C functions are...
155           '_CRT_SECURE_NO_DEPRECATE',
156           # ... or that C implementations shouldn't use
157           # POSIX names
158           '_CRT_NONSTDC_NO_DEPRECATE',
159           'BUILDING_V8_SHARED=1',
160           'BUILDING_UV_SHARED=1',
161         ],
162       }],
163       [ 'OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
164         'cflags': [ '-Wall', '-Wextra', '-Wno-unused-parameter', '-pthread', ],
165         'cflags_cc': [ '-fno-rtti', '-fno-exceptions' ],
166         'ldflags': [ '-pthread', '-rdynamic' ],
167         'target_conditions': [
168           ['_type=="static_library"', {
169             'standalone_static_library': 1, # disable thin archive which needs binutils >= 2.19
170           }],
171         ],
172         'conditions': [
173           [ 'target_arch=="ia32"', {
174             'cflags': [ '-m32' ],
175             'ldflags': [ '-m32' ],
176           }],
177           [ 'target_arch=="x64"', {
178             'cflags': [ '-m64' ],
179             'ldflags': [ '-m64' ],
180           }],
181           [ 'OS=="solaris"', {
182             'cflags': [ '-pthreads' ],
183             'ldflags': [ '-pthreads' ],
184             'cflags!': [ '-pthread' ],
185             'ldflags!': [ '-pthread' ],
186           }],
187         ],
188       }],
189       ['OS=="mac"', {
190         'defines': ['_DARWIN_USE_64_BIT_INODE=1'],
191         'xcode_settings': {
192           'ALWAYS_SEARCH_USER_PATHS': 'NO',
193           'GCC_CW_ASM_SYNTAX': 'NO',                # No -fasm-blocks
194           'GCC_DYNAMIC_NO_PIC': 'NO',               # No -mdynamic-no-pic
195                                                     # (Equivalent to -fPIC)
196           'GCC_ENABLE_CPP_EXCEPTIONS': 'NO',        # -fno-exceptions
197           'GCC_ENABLE_CPP_RTTI': 'NO',              # -fno-rtti
198           'GCC_ENABLE_PASCAL_STRINGS': 'NO',        # No -mpascal-strings
199           'GCC_THREADSAFE_STATICS': 'NO',           # -fno-threadsafe-statics
200           'PREBINDING': 'NO',                       # No -Wl,-prebind
201           'MACOSX_DEPLOYMENT_TARGET': '10.5',       # -mmacosx-version-min=10.5
202           'USE_HEADERMAP': 'NO',
203           'OTHER_CFLAGS': [
204             '-fno-strict-aliasing',
205           ],
206           'WARNING_CFLAGS': [
207             '-Wall',
208             '-Wendif-labels',
209             '-W',
210             '-Wno-unused-parameter',
211           ],
212         },
213         'target_conditions': [
214           ['_type!="static_library"', {
215             'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
216           }],
217         ],
218         'conditions': [
219           ['target_arch=="ia32"', {
220             'xcode_settings': {'ARCHS': ['i386']},
221           }],
222           ['target_arch=="x64"', {
223             'xcode_settings': {'ARCHS': ['x86_64']},
224           }],
225         ],
226       }],
227       ['OS=="freebsd" and node_use_dtrace=="true"', {
228         'libraries': [ '-lelf' ],
229       }]
230     ],
231   }
232 }