build: add libicu i18n support
[platform/upstream/nodejs.git] / configure
1 #!/usr/bin/env python
2 import optparse
3 import os
4 import pprint
5 import re
6 import shlex
7 import subprocess
8 import sys
9
10 CC = os.environ.get('CC', 'cc')
11
12 root_dir = os.path.dirname(__file__)
13 sys.path.insert(0, os.path.join(root_dir, 'tools', 'gyp', 'pylib'))
14 from gyp.common import GetFlavor
15
16 # parse our options
17 parser = optparse.OptionParser()
18
19 # Options should be in alphabetical order but keep --prefix at the top,
20 # that's arguably the one people will be looking for most.
21 parser.add_option('--prefix',
22     action='store',
23     dest='prefix',
24     help='select the install prefix (defaults to /usr/local)')
25
26 parser.add_option('--debug',
27     action='store_true',
28     dest='debug',
29     help='also build debug build')
30
31 parser.add_option('--dest-cpu',
32     action='store',
33     dest='dest_cpu',
34     help='CPU architecture to build for. Valid values are: arm, ia32, x64')
35
36 parser.add_option('--dest-os',
37     action='store',
38     dest='dest_os',
39     help='operating system to build for. Valid values are: '
40          'win, mac, solaris, freebsd, openbsd, linux, android')
41
42 parser.add_option('--gdb',
43     action='store_true',
44     dest='gdb',
45     help='add gdb support')
46
47 parser.add_option('--ninja',
48     action='store_true',
49     dest='use_ninja',
50     help='generate files for the ninja build system')
51
52 parser.add_option('--no-ifaddrs',
53     action='store_true',
54     dest='no_ifaddrs',
55     help='use on deprecated SunOS systems that do not support ifaddrs.h')
56
57 # deprecated
58 parser.add_option('--openssl-includes',
59     action='store',
60     dest='shared_openssl_includes',
61     help=optparse.SUPPRESS_HELP)
62
63 # deprecated
64 parser.add_option('--openssl-libpath',
65     action='store',
66     dest='shared_openssl_libpath',
67     help=optparse.SUPPRESS_HELP)
68
69 # deprecated
70 parser.add_option('--openssl-use-sys',
71     action='store_true',
72     dest='shared_openssl',
73     help=optparse.SUPPRESS_HELP)
74
75 parser.add_option('--shared-cares',
76     action='store_true',
77     dest='shared_cares',
78     help='link to a shared cares DLL instead of static linking')
79
80 parser.add_option('--shared-cares-includes',
81     action='store',
82     dest='shared_cares_includes',
83     help='directory containing cares header files')
84
85 parser.add_option('--shared-cares-libname',
86     action='store',
87     dest='shared_cares_libname',
88     help='alternative lib name to link to (default: \'cares\')')
89
90 parser.add_option('--shared-cares-libpath',
91     action='store',
92     dest='shared_cares_libpath',
93     help='a directory to search for the shared cares DLL')
94
95 parser.add_option('--shared-http-parser',
96     action='store_true',
97     dest='shared_http_parser',
98     help='link to a shared http_parser DLL instead of static linking')
99
100 parser.add_option('--shared-http-parser-includes',
101     action='store',
102     dest='shared_http_parser_includes',
103     help='directory containing http_parser header files')
104
105 parser.add_option('--shared-http-parser-libname',
106     action='store',
107     dest='shared_http_parser_libname',
108     help='alternative lib name to link to (default: \'http_parser\')')
109
110 parser.add_option('--shared-http-parser-libpath',
111     action='store',
112     dest='shared_http_parser_libpath',
113     help='a directory to search for the shared http_parser DLL')
114
115 parser.add_option('--shared-libuv',
116     action='store_true',
117     dest='shared_libuv',
118     help='link to a shared libuv DLL instead of static linking')
119
120 parser.add_option('--shared-libuv-includes',
121     action='store',
122     dest='shared_libuv_includes',
123     help='directory containing libuv header files')
124
125 parser.add_option('--shared-libuv-libname',
126     action='store',
127     dest='shared_libuv_libname',
128     help='alternative lib name to link to (default: \'uv\')')
129
130 parser.add_option('--shared-libuv-libpath',
131     action='store',
132     dest='shared_libuv_libpath',
133     help='a directory to search for the shared libuv DLL')
134
135 parser.add_option('--shared-openssl',
136     action='store_true',
137     dest='shared_openssl',
138     help='link to a shared OpenSSl DLL instead of static linking')
139
140 parser.add_option('--shared-openssl-includes',
141     action='store',
142     dest='shared_openssl_includes',
143     help='directory containing OpenSSL header files')
144
145 parser.add_option('--shared-openssl-libname',
146     action='store',
147     dest='shared_openssl_libname',
148     help='alternative lib name to link to (default: \'crypto,ssl\')')
149
150 parser.add_option('--shared-openssl-libpath',
151     action='store',
152     dest='shared_openssl_libpath',
153     help='a directory to search for the shared OpenSSL DLLs')
154
155 parser.add_option('--shared-v8',
156     action='store_true',
157     dest='shared_v8',
158     help='link to a shared V8 DLL instead of static linking')
159
160 parser.add_option('--shared-v8-includes',
161     action='store',
162     dest='shared_v8_includes',
163     help='directory containing V8 header files')
164
165 parser.add_option('--shared-v8-libname',
166     action='store',
167     dest='shared_v8_libname',
168     help='alternative lib name to link to (default: \'v8\')')
169
170 parser.add_option('--shared-v8-libpath',
171     action='store',
172     dest='shared_v8_libpath',
173     help='a directory to search for the shared V8 DLL')
174
175 parser.add_option('--shared-zlib',
176     action='store_true',
177     dest='shared_zlib',
178     help='link to a shared zlib DLL instead of static linking')
179
180 parser.add_option('--shared-zlib-includes',
181     action='store',
182     dest='shared_zlib_includes',
183     help='directory containing zlib header files')
184
185 parser.add_option('--shared-zlib-libname',
186     action='store',
187     dest='shared_zlib_libname',
188     help='alternative lib name to link to (default: \'z\')')
189
190 parser.add_option('--shared-zlib-libpath',
191     action='store',
192     dest='shared_zlib_libpath',
193     help='a directory to search for the shared zlib DLL')
194
195 # TODO document when we've decided on what the tracing API and its options will
196 # look like
197 parser.add_option('--systemtap-includes',
198     action='store',
199     dest='systemtap_includes',
200     help=optparse.SUPPRESS_HELP)
201
202 parser.add_option('--tag',
203     action='store',
204     dest='tag',
205     help='custom build tag')
206
207 parser.add_option('--with-arm-float-abi',
208     action='store',
209     dest='arm_float_abi',
210     help='specifies which floating-point ABI to use. Valid values are: '
211          'soft, softfp, hard')
212
213 parser.add_option('--with-dtrace',
214     action='store_true',
215     dest='with_dtrace',
216     help='build with DTrace (default is true on sunos)')
217
218 parser.add_option('--with-etw',
219     action='store_true',
220     dest='with_etw',
221     help='build with ETW (default is true on Windows)')
222
223 parser.add_option('--with-icu-path',
224     action='store',
225     dest='with_icu_path',
226     help='Path to icu.gyp (ICU i18n, Chromium version only.)')
227
228 parser.add_option('--with-perfctr',
229     action='store_true',
230     dest='with_perfctr',
231     help='build with performance counters (default is true on Windows)')
232
233 parser.add_option('--with-sslv2',
234     action='store_true',
235     dest='with_sslv2',
236     help='enable SSL v2')
237
238 parser.add_option('--without-dtrace',
239     action='store_true',
240     dest='without_dtrace',
241     help='build without DTrace')
242
243 parser.add_option('--without-etw',
244     action='store_true',
245     dest='without_etw',
246     help='build without ETW')
247
248 parser.add_option('--without-npm',
249     action='store_true',
250     dest='without_npm',
251     help='don\'t install the bundled npm package manager')
252
253 parser.add_option('--without-perfctr',
254     action='store_true',
255     dest='without_perfctr',
256     help='build without performance counters')
257
258 parser.add_option('--without-snapshot',
259     action='store_true',
260     dest='without_snapshot',
261     help='build without snapshotting V8 libraries. You might want to set'
262          ' this for cross-compiling. [Default: False]')
263
264 parser.add_option('--without-ssl',
265     action='store_true',
266     dest='without_ssl',
267     help='build without SSL')
268
269 parser.add_option('--xcode',
270     action='store_true',
271     dest='use_xcode',
272     help='generate build files for use with xcode')
273
274 (options, args) = parser.parse_args()
275
276
277 def b(value):
278   """Returns the string 'true' if value is truthy, 'false' otherwise."""
279   if value:
280     return 'true'
281   else:
282     return 'false'
283
284
285 def pkg_config(pkg):
286   cmd = os.popen('pkg-config --libs %s' % pkg, 'r')
287   libs = cmd.readline().strip()
288   ret = cmd.close()
289   if (ret): return None
290
291   cmd = os.popen('pkg-config --cflags %s' % pkg, 'r')
292   cflags = cmd.readline().strip()
293   ret = cmd.close()
294   if (ret): return None
295
296   return (libs, cflags)
297
298
299 def cc_macros():
300   """Checks predefined macros using the CC command."""
301
302   try:
303     p = subprocess.Popen(shlex.split(CC) + ['-dM', '-E', '-'],
304                          stdin=subprocess.PIPE,
305                          stdout=subprocess.PIPE,
306                          stderr=subprocess.PIPE)
307   except OSError:
308     print '''Node.js configure error: No acceptable C compiler found!
309
310         Please make sure you have a C compiler installed on your system and/or
311         consider adjusting the CC environment variable if you installed
312         it in a non-standard prefix.
313         '''
314     sys.exit()
315
316   p.stdin.write('\n')
317   out = p.communicate()[0]
318
319   out = str(out).split('\n')
320
321   k = {}
322   for line in out:
323     lst = shlex.split(line)
324     if len(lst) > 2:
325       key = lst[1]
326       val = lst[2]
327       k[key] = val
328   return k
329
330
331 def is_arch_armv7():
332   """Check for ARMv7 instructions"""
333   cc_macros_cache = cc_macros()
334   return ('__ARM_ARCH_7__' in cc_macros_cache or
335           '__ARM_ARCH_7A__' in cc_macros_cache or
336           '__ARM_ARCH_7R__' in cc_macros_cache or
337           '__ARM_ARCH_7M__' in cc_macros_cache)
338
339
340 def is_arm_neon():
341   """Check for ARM NEON support"""
342   return '__ARM_NEON__' in cc_macros()
343
344
345 def is_arm_hard_float_abi():
346   """Check for hardfloat or softfloat eabi on ARM"""
347   # GCC versions 4.6 and above define __ARM_PCS or __ARM_PCS_VFP to specify
348   # the Floating Point ABI used (PCS stands for Procedure Call Standard).
349   # We use these as well as a couple of other defines to statically determine
350   # what FP ABI used.
351   # GCC versions 4.4 and below don't support hard-fp.
352   # GCC versions 4.5 may support hard-fp without defining __ARM_PCS or
353   # __ARM_PCS_VFP.
354
355   if compiler_version() >= (4, 6, 0):
356     return '__ARM_PCS_VFP' in cc_macros()
357   elif compiler_version() < (4, 5, 0):
358     return False
359   elif '__ARM_PCS_VFP' in cc_macros():
360     return True
361   elif ('__ARM_PCS' in cc_macros() or
362         '__SOFTFP' in cc_macros() or
363         not '__VFP_FP__' in cc_macros()):
364     return False
365   else:
366     print '''Node.js configure error: Your version of GCC does not report
367       the Floating-Point ABI to compile for your hardware
368
369       Please manually specify which floating-point ABI to use with the
370       --with-arm-float-abi option.
371       '''
372     sys.exit()
373
374
375 def host_arch_cc():
376   """Host architecture check using the CC command."""
377
378   k = cc_macros()
379
380   matchup = {
381     '__x86_64__'  : 'x64',
382     '__i386__'    : 'ia32',
383     '__arm__'     : 'arm',
384     '__mips__'    : 'mips',
385   }
386
387   rtn = 'ia32' # default
388
389   for i in matchup:
390     if i in k and k[i] != '0':
391       rtn = matchup[i]
392       break
393
394   return rtn
395
396
397 def host_arch_win():
398   """Host architecture check using environ vars (better way to do this?)"""
399
400   arch = os.environ.get('PROCESSOR_ARCHITECTURE', 'x86')
401
402   matchup = {
403     'AMD64'  : 'x64',
404     'x86'    : 'ia32',
405     'arm'    : 'arm',
406     'mips'   : 'mips',
407   }
408
409   return matchup.get(arch, 'ia32')
410
411
412 def compiler_version():
413   try:
414     proc = subprocess.Popen(shlex.split(CC) + ['--version'],
415                             stdout=subprocess.PIPE)
416   except WindowsError:
417     return (0, False)
418
419   is_clang = 'clang' in proc.communicate()[0].split('\n')[0]
420
421   proc = subprocess.Popen(shlex.split(CC) + ['-dumpversion'],
422                           stdout=subprocess.PIPE)
423   version = tuple(map(int, proc.communicate()[0].split('.')))
424
425   return (version, is_clang)
426
427
428 def configure_arm(o):
429   if options.arm_float_abi:
430     arm_float_abi = options.arm_float_abi
431   else:
432     arm_float_abi = 'hard' if is_arm_hard_float_abi() else 'default'
433   o['variables']['armv7'] = int(is_arch_armv7())
434   o['variables']['arm_fpu'] = 'vfpv3'  # V8 3.18 no longer supports VFP2.
435   o['variables']['arm_neon'] = int(is_arm_neon())
436   o['variables']['arm_thumb'] = 0      # -marm
437   o['variables']['arm_float_abi'] = arm_float_abi
438
439
440 def configure_node(o):
441   if options.dest_os == 'android':
442     o['variables']['OS'] = 'android'
443   o['variables']['node_prefix'] = os.path.expanduser(options.prefix or '')
444   o['variables']['node_install_npm'] = b(not options.without_npm)
445   o['default_configuration'] = 'Debug' if options.debug else 'Release'
446
447   host_arch = host_arch_win() if os.name == 'nt' else host_arch_cc()
448   target_arch = options.dest_cpu or host_arch
449   o['variables']['host_arch'] = host_arch
450   o['variables']['target_arch'] = target_arch
451
452   if target_arch == 'arm':
453     configure_arm(o)
454
455   cc_version, is_clang = compiler_version()
456   o['variables']['clang'] = 1 if is_clang else 0
457
458   if not is_clang and cc_version != 0:
459     o['variables']['gcc_version'] = 10 * cc_version[0] + cc_version[1]
460
461   # clang has always supported -fvisibility=hidden, right?
462   if not is_clang and cc_version < (4,0,0):
463     o['variables']['visibility'] = ''
464
465   if flavor in ('solaris', 'mac', 'linux'):
466     use_dtrace = not options.without_dtrace
467     # Don't enable by default on linux, it needs the sdt-devel package.
468     if flavor == 'linux':
469       if options.systemtap_includes:
470         o['include_dirs'] += [options.systemtap_includes]
471       use_dtrace = options.with_dtrace
472     o['variables']['node_use_dtrace'] = b(use_dtrace)
473     o['variables']['uv_use_dtrace'] = b(use_dtrace)
474     o['variables']['uv_parent_path'] = '/deps/uv/'
475   elif options.with_dtrace:
476     raise Exception(
477        'DTrace is currently only supported on SunOS, MacOS or Linux systems.')
478   else:
479     o['variables']['node_use_dtrace'] = 'false'
480
481   # if we're on illumos based systems wrap the helper library into the
482   # executable
483   if flavor == 'solaris':
484     o['variables']['node_use_mdb'] = 'true'
485   else:
486     o['variables']['node_use_mdb'] = 'false'
487
488   if options.no_ifaddrs:
489     o['defines'] += ['SUNOS_NO_IFADDRS']
490
491   # By default, enable ETW on Windows.
492   if flavor == 'win':
493     o['variables']['node_use_etw'] = b(not options.without_etw)
494   elif options.with_etw:
495     raise Exception('ETW is only supported on Windows.')
496   else:
497     o['variables']['node_use_etw'] = 'false'
498
499   # By default, enable Performance counters on Windows.
500   if flavor == 'win':
501     o['variables']['node_use_perfctr'] = b(not options.without_perfctr)
502   elif options.with_perfctr:
503     raise Exception('Performance counter is only supported on Windows.')
504   else:
505     o['variables']['node_use_perfctr'] = 'false'
506
507   if options.tag:
508     o['variables']['node_tag'] = '-' + options.tag
509   else:
510     o['variables']['node_tag'] = ''
511
512
513 def configure_libz(o):
514   o['variables']['node_shared_zlib'] = b(options.shared_zlib)
515
516   # assume shared_zlib if one of these is set?
517   if options.shared_zlib_libpath:
518     o['libraries'] += ['-L%s' % options.shared_zlib_libpath]
519   if options.shared_zlib_libname:
520     o['libraries'] += ['-l%s' % options.shared_zlib_libname]
521   elif options.shared_zlib:
522     o['libraries'] += ['-lz']
523   if options.shared_zlib_includes:
524     o['include_dirs'] += [options.shared_zlib_includes]
525
526
527 def configure_http_parser(o):
528     o['variables']['node_shared_http_parser'] = b(options.shared_http_parser)
529
530     # assume shared http_parser if one of these is set?
531     if options.shared_http_parser_libpath:
532         o['libraries'] += ['-L%s' % options.shared_http_parser_libpath]
533     if options.shared_http_parser_libname:
534         o['libraries'] += ['-l%s' % options.shared_http_parser_libname]
535     elif options.shared_http_parser:
536         o['libraries'] += ['-lhttp_parser']
537     if options.shared_http_parser_includes:
538         o['include_dirs'] += [options.shared_http_parser_includes]
539
540
541 def configure_cares(o):
542     o['variables']['node_shared_cares'] = b(options.shared_cares)
543
544     # assume shared cares if one of these is set?
545     if options.shared_cares_libpath:
546         o['libraries'] += ['-L%s' % options.shared_cares_libpath]
547     if options.shared_cares_libname:
548         o['libraries'] += ['-l%s' % options.shared_cares_libname]
549     elif options.shared_cares:
550         o['libraries'] += ['-lcares']
551     if options.shared_cares_includes:
552         o['include_dirs'] += [options.shared_cares_includes]
553
554
555 def configure_libuv(o):
556   o['variables']['node_shared_libuv'] = b(options.shared_libuv)
557
558   # assume shared libuv if one of these is set?
559   if options.shared_libuv_libpath:
560     o['libraries'] += ['-L%s' % options.shared_libuv_libpath]
561   if options.shared_libuv_libname:
562     o['libraries'] += ['-l%s' % options.shared_libuv_libname]
563   elif options.shared_libuv:
564     o['libraries'] += ['-luv']
565   if options.shared_libuv_includes:
566     o['include_dirs'] += [options.shared_libuv_includes]
567
568
569 def configure_v8(o):
570   o['variables']['node_shared_v8'] = b(options.shared_v8)
571   o['variables']['v8_enable_gdbjit'] = 1 if options.gdb else 0
572   o['variables']['v8_no_strict_aliasing'] = 1  # Work around compiler bugs.
573   o['variables']['v8_optimized_debug'] = 0  # Compile with -O0 in debug builds.
574   o['variables']['v8_random_seed'] = 0  # Use a random seed for hash tables.
575   o['variables']['v8_use_snapshot'] = b(not options.without_snapshot)
576
577   # assume shared_v8 if one of these is set?
578   if options.shared_v8_libpath:
579     o['libraries'] += ['-L%s' % options.shared_v8_libpath]
580   if options.shared_v8_libname:
581     o['libraries'] += ['-l%s' % options.shared_v8_libname]
582   elif options.shared_v8:
583     o['libraries'] += ['-lv8']
584   if options.shared_v8_includes:
585     o['include_dirs'] += [options.shared_v8_includes]
586
587
588 def configure_openssl(o):
589   o['variables']['node_use_openssl'] = b(not options.without_ssl)
590   o['variables']['node_shared_openssl'] = b(options.shared_openssl)
591
592   if options.without_ssl:
593     return
594
595   # OpenSSL uses `#ifndef OPENSSL_NO_SSL2` checks so only define the
596   # macro when we want to _disable_ SSL2.
597   if not options.with_sslv2:
598     o['defines'] += ['OPENSSL_NO_SSL2=1']
599
600   if options.shared_openssl:
601     (libs, cflags) = pkg_config('openssl') or ('-lssl -lcrypto', '')
602
603     if options.shared_openssl_libpath:
604       o['libraries'] += ['-L%s' % options.shared_openssl_libpath]
605
606     if options.shared_openssl_libname:
607       libnames = options.shared_openssl_libname.split(',')
608       o['libraries'] += ['-l%s' % s for s in libnames]
609     else:
610       o['libraries'] += libs.split()
611
612     if options.shared_openssl_includes:
613       o['include_dirs'] += [options.shared_openssl_includes]
614     else:
615       o['cflags'] += cflags.split()
616
617
618 def configure_winsdk(o):
619   if flavor != 'win':
620     return
621
622   winsdk_dir = os.environ.get('WindowsSdkDir')
623
624   if winsdk_dir and os.path.isfile(winsdk_dir + '\\bin\\ctrpp.exe'):
625     print('Found ctrpp in WinSDK--will build generated files '
626           'into tools/msvs/genfiles.')
627     o['variables']['node_has_winsdk'] = 'true'
628     return
629
630   print('ctrpp not found in WinSDK path--using pre-gen files '
631         'from tools/msvs/genfiles.')
632
633
634 def configure_icu(o):
635   have_icu_path = bool(options.with_icu_path)
636   o['variables']['v8_enable_i18n_support'] = int(have_icu_path)
637   if have_icu_path:
638     o['variables']['icu_gyp_path'] = options.with_icu_path
639
640
641 # determine the "flavor" (operating system) we're building for,
642 # leveraging gyp's GetFlavor function
643 flavor_params = {}
644 if (options.dest_os):
645   flavor_params['flavor'] = options.dest_os
646 flavor = GetFlavor(flavor_params)
647
648 output = {
649   'variables': { 'python': sys.executable },
650   'include_dirs': [],
651   'libraries': [],
652   'defines': [],
653   'cflags': [],
654 }
655
656 configure_node(output)
657 configure_libz(output)
658 configure_http_parser(output)
659 configure_cares(output)
660 configure_libuv(output)
661 configure_v8(output)
662 configure_openssl(output)
663 configure_winsdk(output)
664 configure_icu(output)
665
666 # variables should be a root level element,
667 # move everything else to target_defaults
668 variables = output['variables']
669 del output['variables']
670 output = {
671   'variables': variables,
672   'target_defaults': output
673 }
674 pprint.pprint(output, indent=2)
675
676 def write(filename, data):
677   filename = os.path.join(root_dir, filename)
678   print 'creating ', filename
679   f = open(filename, 'w+')
680   f.write(data)
681
682 write('config.gypi', '# Do not edit. Generated by the configure script.\n' +
683       pprint.pformat(output, indent=2) + '\n')
684
685 config = {
686   'BUILDTYPE': 'Debug' if options.debug else 'Release',
687   'USE_NINJA': str(int(options.use_ninja or 0)),
688   'USE_XCODE': str(int(options.use_xcode or 0)),
689   'PYTHON': sys.executable,
690 }
691
692 if options.prefix:
693   config['PREFIX'] = options.prefix
694
695 config = '\n'.join(map('='.join, config.iteritems())) + '\n'
696
697 write('config.mk',
698       '# Do not edit. Generated by the configure script.\n' + config)
699
700 if options.use_ninja:
701   gyp_args = ['-f', 'ninja-' + flavor]
702 elif options.use_xcode:
703   gyp_args = ['-f', 'xcode']
704 elif flavor == 'win':
705   gyp_args = ['-f', 'msvs', '-G', 'msvs_version=auto']
706 else:
707   gyp_args = ['-f', 'make-' + flavor]
708
709 subprocess.call([sys.executable, 'tools/gyp_node.py'] + gyp_args)