test: fix flaky unit test test-fs-realpath.js
[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     # Enable V8's post-mortem debugging only on unix flavors.
15     'conditions': [
16       ['OS == "win"', {
17         'os_posix': 0,
18         'v8_postmortem_support': 'false'
19       }, {
20         'os_posix': 1,
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         'cflags': [ '-O3', '-ffunction-sections', '-fdata-sections' ],
55         'conditions': [
56           ['target_arch=="x64"', {
57             'msvs_configuration_platform': 'x64',
58           }],
59           ['OS=="solaris"', {
60             # pull in V8's postmortem metadata
61             'ldflags': [ '-Wl,-z,allextract' ]
62           }, {
63             # Doesn't work with the Solaris linker.
64             'ldflags': [ '-Wl,--gc-sections' ],
65           }],
66           ['clang == 0 and gcc_version >= 40', {
67             'cflags': [ '-fno-tree-vrp' ],  # Work around compiler bug.
68           }],
69           ['clang == 0 and gcc_version <= 44', {
70             'cflags': [ '-fno-tree-sink' ],  # Work around compiler bug.
71           }],
72           ['OS!="mac" and OS!="win"', {
73             'cflags': [ '-fno-omit-frame-pointer' ],
74           }],
75         ],
76         'msvs_settings': {
77           'VCCLCompilerTool': {
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
90             ],
91           },
92           'VCLibrarianTool': {
93             'AdditionalOptions': [
94               '/LTCG', # link time code generation
95             ],
96           },
97           'VCLinkerTool': {
98             'LinkTimeCodeGeneration': 1, # link-time code generation
99             'OptimizeReferences': 2, # /OPT:REF
100             'EnableCOMDATFolding': 2, # /OPT:ICF
101             'LinkIncremental': 1, # disable incremental linking
102           },
103         },
104       }
105     },
106     'msvs_settings': {
107       'VCCLCompilerTool': {
108         'StringPooling': 'true', # pool string literals
109         'DebugInformationFormat': 3, # Generate a PDB
110         'WarningLevel': 3,
111         'BufferSecurityCheck': 'true',
112         'ExceptionHandling': 1, # /EHsc
113         'SuppressStartupBanner': 'true',
114         'WarnAsError': 'false',
115       },
116       'VCLibrarianTool': {
117       },
118       'VCLinkerTool': {
119         'conditions': [
120           ['target_arch=="x64"', {
121             'TargetMachine' : 17 # /MACHINE:X64
122           }],
123         ],
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
132           }],
133         ],
134       },
135     },
136     'msvs_disabled_warnings': [4351, 4355, 4800],
137     'conditions': [
138       ['OS == "win"', {
139         'msvs_cygwin_shell': 0, # prevent actions from trying to use cygwin
140         'defines': [
141           'WIN32',
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
146           # POSIX names
147           '_CRT_NONSTDC_NO_DEPRECATE',
148           'BUILDING_V8_SHARED=1',
149           'BUILDING_UV_SHARED=1',
150         ],
151       }],
152       [ 'OS in "linux freebsd openbsd solaris"', {
153         'cflags': [ '-pthread', ],
154         'ldflags': [ '-pthread' ],
155       }],
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
163           }],
164         ],
165         'conditions': [
166           [ 'target_arch=="ia32"', {
167             'cflags': [ '-m32' ],
168             'ldflags': [ '-m32' ],
169           }],
170           [ 'target_arch=="x64"', {
171             'cflags': [ '-m64' ],
172             'ldflags': [ '-m64' ],
173           }],
174           [ 'OS=="solaris"', {
175             'cflags': [ '-pthreads' ],
176             'ldflags': [ '-pthreads' ],
177             'cflags!': [ '-pthread' ],
178             'ldflags!': [ '-pthread' ],
179           }],
180         ],
181       }],
182       [ 'OS=="android"', {
183         'defines': ['_GLIBCXX_USE_C99_MATH'],
184         'libraries': [ '-llog' ],
185       }],
186       ['OS=="mac"', {
187         'defines': ['_DARWIN_USE_64_BIT_INODE=1'],
188         'xcode_settings': {
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',
200           'OTHER_CFLAGS': [
201             '-fno-strict-aliasing',
202           ],
203           'WARNING_CFLAGS': [
204             '-Wall',
205             '-Wendif-labels',
206             '-W',
207             '-Wno-unused-parameter',
208           ],
209         },
210         'target_conditions': [
211           ['_type!="static_library"', {
212             'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
213           }],
214         ],
215         'conditions': [
216           ['target_arch=="ia32"', {
217             'xcode_settings': {'ARCHS': ['i386']},
218           }],
219           ['target_arch=="x64"', {
220             'xcode_settings': {'ARCHS': ['x86_64']},
221           }],
222         ],
223       }],
224       ['OS=="freebsd" and node_use_dtrace=="true"', {
225         'libraries': [ '-lelf' ],
226       }]
227     ],
228   }
229 }