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