tls_wrap: fix BIO leak on SSL error
[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 import shutil
10 import string
11
12 # gcc and g++ as defaults matches what GYP's Makefile generator does,
13 # except on OS X.
14 CC = os.environ.get('CC', 'cc' if sys.platform == 'darwin' else 'gcc')
15 CXX = os.environ.get('CXX', 'c++' if sys.platform == 'darwin' else 'g++')
16
17 root_dir = os.path.dirname(__file__)
18 sys.path.insert(0, os.path.join(root_dir, 'tools', 'gyp', 'pylib'))
19 from gyp.common import GetFlavor
20
21 # imports in tools/configure.d
22 sys.path.insert(0, os.path.join(root_dir, 'tools', 'configure.d'))
23 import nodedownload
24
25 # parse our options
26 parser = optparse.OptionParser()
27
28 # Options should be in alphabetical order but keep --prefix at the top,
29 # that's arguably the one people will be looking for most.
30 parser.add_option('--prefix',
31     action='store',
32     dest='prefix',
33     help='select the install prefix (defaults to /usr/local)')
34
35 parser.add_option('--debug',
36     action='store_true',
37     dest='debug',
38     help='also build debug build')
39
40 parser.add_option('--dest-cpu',
41     action='store',
42     dest='dest_cpu',
43     help='CPU architecture to build for. '
44          'Valid values are: arm, arm64, ia32, mips, mipsel, x32, x64')
45
46 parser.add_option('--dest-os',
47     action='store',
48     dest='dest_os',
49     help='operating system to build for. Valid values are: '
50          'win, mac, solaris, freebsd, openbsd, linux, android')
51
52 parser.add_option('--gdb',
53     action='store_true',
54     dest='gdb',
55     help='add gdb support')
56
57 parser.add_option('--no-ifaddrs',
58     action='store_true',
59     dest='no_ifaddrs',
60     help='use on deprecated SunOS systems that do not support ifaddrs.h')
61
62 parser.add_option("--fully-static",
63     action="store_true",
64     dest="fully_static",
65     help="Generate an executable without external dynamic libraries. This "
66          "will not work on OSX when using default compilation environment")
67
68 parser.add_option("--openssl-no-asm",
69     action="store_true",
70     dest="openssl_no_asm",
71     help="Do not build optimized assembly for OpenSSL")
72
73 # deprecated
74 parser.add_option('--openssl-includes',
75     action='store',
76     dest='shared_openssl_includes',
77     help=optparse.SUPPRESS_HELP)
78
79 # deprecated
80 parser.add_option('--openssl-libpath',
81     action='store',
82     dest='shared_openssl_libpath',
83     help=optparse.SUPPRESS_HELP)
84
85 # deprecated
86 parser.add_option('--openssl-use-sys',
87     action='store_true',
88     dest='shared_openssl',
89     help=optparse.SUPPRESS_HELP)
90
91 parser.add_option('--shared-http-parser',
92     action='store_true',
93     dest='shared_http_parser',
94     help='link to a shared http_parser DLL instead of static linking')
95
96 parser.add_option('--shared-http-parser-includes',
97     action='store',
98     dest='shared_http_parser_includes',
99     help='directory containing http_parser header files')
100
101 parser.add_option('--shared-http-parser-libname',
102     action='store',
103     dest='shared_http_parser_libname',
104     help='alternative lib name to link to (default: \'http_parser\')')
105
106 parser.add_option('--shared-http-parser-libpath',
107     action='store',
108     dest='shared_http_parser_libpath',
109     help='a directory to search for the shared http_parser DLL')
110
111 parser.add_option('--shared-libuv',
112     action='store_true',
113     dest='shared_libuv',
114     help='link to a shared libuv DLL instead of static linking')
115
116 parser.add_option('--shared-libuv-includes',
117     action='store',
118     dest='shared_libuv_includes',
119     help='directory containing libuv header files')
120
121 parser.add_option('--shared-libuv-libname',
122     action='store',
123     dest='shared_libuv_libname',
124     help='alternative lib name to link to (default: \'uv\')')
125
126 parser.add_option('--shared-libuv-libpath',
127     action='store',
128     dest='shared_libuv_libpath',
129     help='a directory to search for the shared libuv DLL')
130
131 parser.add_option('--shared-openssl',
132     action='store_true',
133     dest='shared_openssl',
134     help='link to a shared OpenSSl DLL instead of static linking')
135
136 parser.add_option('--shared-openssl-includes',
137     action='store',
138     dest='shared_openssl_includes',
139     help='directory containing OpenSSL header files')
140
141 parser.add_option('--shared-openssl-libname',
142     action='store',
143     dest='shared_openssl_libname',
144     help='alternative lib name to link to (default: \'crypto,ssl\')')
145
146 parser.add_option('--shared-openssl-libpath',
147     action='store',
148     dest='shared_openssl_libpath',
149     help='a directory to search for the shared OpenSSL DLLs')
150
151 parser.add_option('--shared-v8',
152     action='store_true',
153     dest='shared_v8',
154     help='link to a shared V8 DLL instead of static linking')
155
156 parser.add_option('--shared-v8-includes',
157     action='store',
158     dest='shared_v8_includes',
159     help='directory containing V8 header files')
160
161 parser.add_option('--shared-v8-libname',
162     action='store',
163     dest='shared_v8_libname',
164     help='alternative lib name to link to (default: \'v8\')')
165
166 parser.add_option('--shared-v8-libpath',
167     action='store',
168     dest='shared_v8_libpath',
169     help='a directory to search for the shared V8 DLL')
170
171 parser.add_option('--shared-zlib',
172     action='store_true',
173     dest='shared_zlib',
174     help='link to a shared zlib DLL instead of static linking')
175
176 parser.add_option('--shared-zlib-includes',
177     action='store',
178     dest='shared_zlib_includes',
179     help='directory containing zlib header files')
180
181 parser.add_option('--shared-zlib-libname',
182     action='store',
183     dest='shared_zlib_libname',
184     help='alternative lib name to link to (default: \'z\')')
185
186 parser.add_option('--shared-zlib-libpath',
187     action='store',
188     dest='shared_zlib_libpath',
189     help='a directory to search for the shared zlib DLL')
190
191 # TODO document when we've decided on what the tracing API and its options will
192 # look like
193 parser.add_option('--systemtap-includes',
194     action='store',
195     dest='systemtap_includes',
196     help=optparse.SUPPRESS_HELP)
197
198 parser.add_option('--tag',
199     action='store',
200     dest='tag',
201     help='custom build tag')
202
203 parser.add_option('--v8-options',
204     action='store',
205     dest='v8_options',
206     help='v8 options to pass, see `node --v8-options` for examples.')
207
208 parser.add_option('--with-arm-float-abi',
209     action='store',
210     dest='arm_float_abi',
211     help='specifies which floating-point ABI to use. Valid values are: '
212          'soft, softfp, hard')
213
214 parser.add_option('--with-mips-arch-variant',
215     action='store',
216     dest='mips_arch_variant',
217     default='r2',
218     help='MIPS arch variant: loongson, r1, r2, r6, rx')
219
220 parser.add_option('--with-mips-fpu-mode',
221     action='store',
222     dest='mips_fpu_mode',
223     default='fp32',
224     help='MIPS FPU mode: fp32, fp64, fpxx')
225
226 parser.add_option('--with-mips-float-abi',
227     action='store',
228     dest='mips_float_abi',
229     default='hard',
230     help='MIPS floating-point ABI: soft, hard')
231
232 parser.add_option('--with-dtrace',
233     action='store_true',
234     dest='with_dtrace',
235     help='build with DTrace (default is true on sunos)')
236
237 parser.add_option('--with-lttng',
238     action='store_true',
239     dest='with_lttng',
240     help='build with Lttng (Only available to Linux)')
241
242 parser.add_option('--with-etw',
243     action='store_true',
244     dest='with_etw',
245     help='build with ETW (default is true on Windows)')
246
247 parser.add_option('--download',
248     action='store',
249     dest='download_list',
250     help=nodedownload.help())
251
252 parser.add_option('--with-icu-path',
253     action='store',
254     dest='with_icu_path',
255     help='Path to icu.gyp (ICU i18n, Chromium version only.)')
256
257 parser.add_option('--with-icu-locales',
258     action='store',
259     dest='with_icu_locales',
260     help='Comma-separated list of locales for "small-icu". Default: "root,en". "root" is assumed.')
261
262 parser.add_option('--with-intl',
263     action='store',
264     dest='with_intl',
265     help='Intl mode: none, full-icu, small-icu (default is none)')
266
267 parser.add_option('--with-icu-source',
268     action='store',
269     dest='with_icu_source',
270     help='Intl mode: optional local path to icu/ dir, or path/URL of icu source archive.')
271
272 parser.add_option('--with-perfctr',
273     action='store_true',
274     dest='with_perfctr',
275     help='build with performance counters (default is true on Windows)')
276
277 parser.add_option('--without-dtrace',
278     action='store_true',
279     dest='without_dtrace',
280     help='build without DTrace')
281
282 parser.add_option('--without-etw',
283     action='store_true',
284     dest='without_etw',
285     help='build without ETW')
286
287 parser.add_option('--without-npm',
288     action='store_true',
289     dest='without_npm',
290     help='don\'t install the bundled npm package manager')
291
292 parser.add_option('--without-perfctr',
293     action='store_true',
294     dest='without_perfctr',
295     help='build without performance counters')
296
297 parser.add_option('--with-snapshot',
298     action='store_true',
299     dest='with_snapshot',
300     help=optparse.SUPPRESS_HELP)
301
302 # Dummy option for backwards compatibility.
303 parser.add_option('--without-snapshot',
304     action='store_true',
305     dest='unused_without_snapshot',
306     help=optparse.SUPPRESS_HELP)
307
308 parser.add_option('--without-ssl',
309     action='store_true',
310     dest='without_ssl',
311     help='build without SSL')
312
313 parser.add_option('--xcode',
314     action='store_true',
315     dest='use_xcode',
316     help='generate build files for use with xcode')
317
318 (options, args) = parser.parse_args()
319
320 # set up auto-download list
321 auto_downloads = nodedownload.parse(options.download_list)
322
323
324 def warn(msg):
325   warn.warned = True
326   prefix = '\033[1m\033[93mWARNING\033[0m' if os.isatty(1) else 'WARNING'
327   print('%s: %s' % (prefix, msg))
328
329 # track if warnings occured
330 warn.warned = False
331
332 def b(value):
333   """Returns the string 'true' if value is truthy, 'false' otherwise."""
334   if value:
335     return 'true'
336   else:
337     return 'false'
338
339
340 def pkg_config(pkg):
341   cmd = os.popen('pkg-config --libs %s' % pkg, 'r')
342   libs = cmd.readline().strip()
343   ret = cmd.close()
344   if (ret): return None
345
346   cmd = os.popen('pkg-config --cflags %s' % pkg, 'r')
347   cflags = cmd.readline().strip()
348   ret = cmd.close()
349   if (ret): return None
350
351   return (libs, cflags)
352
353
354 def try_check_compiler(cc, lang):
355   try:
356     proc = subprocess.Popen(shlex.split(cc) + ['-E', '-P', '-x', lang, '-'],
357                             stdin=subprocess.PIPE, stdout=subprocess.PIPE)
358   except OSError:
359     return (False, False, '', '')
360
361   proc.stdin.write('__clang__ __GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__ '
362                    '__clang_major__ __clang_minor__ __clang_patchlevel__')
363
364   values = (proc.communicate()[0].split() + ['0'] * 7)[0:7]
365   is_clang = values[0] == '1'
366   gcc_version = '%s.%s.%s' % tuple(values[1:1+3])
367   clang_version = '%s.%s.%s' % tuple(values[4:4+3])
368
369   return (True, is_clang, clang_version, gcc_version)
370
371
372 # Note: Apple clang self-reports as clang 4.2.0 and gcc 4.2.1.  It passes
373 # the version check more by accident than anything else but a more rigorous
374 # check involves checking the build number against a whitelist.  I'm not
375 # quite prepared to go that far yet.
376 def check_compiler():
377   if sys.platform == 'win32':
378     return
379
380   ok, is_clang, clang_version, gcc_version = try_check_compiler(CXX, 'c++')
381   if not ok:
382     warn('failed to autodetect C++ compiler version (CXX=%s)' % CXX)
383   elif clang_version < '3.4.0' if is_clang else gcc_version < '4.8.0':
384     warn('C++ compiler too old, need g++ 4.8 or clang++ 3.4 (CXX=%s)' % CXX)
385
386   ok, is_clang, clang_version, gcc_version = try_check_compiler(CC, 'c')
387   if not ok:
388     warn('failed to autodetect C compiler version (CC=%s)' % CC)
389   elif not is_clang and gcc_version < '4.2.0':
390     # clang 3.2 is a little white lie because any clang version will probably
391     # do for the C bits.  However, we might as well encourage people to upgrade
392     # to a version that is not completely ancient.
393     warn('C compiler too old, need gcc 4.2 or clang 3.2 (CC=%s)' % CC)
394
395
396 def cc_macros():
397   """Checks predefined macros using the CC command."""
398
399   try:
400     p = subprocess.Popen(shlex.split(CC) + ['-dM', '-E', '-'],
401                          stdin=subprocess.PIPE,
402                          stdout=subprocess.PIPE,
403                          stderr=subprocess.PIPE)
404   except OSError:
405     print '''Node.js configure error: No acceptable C compiler found!
406
407         Please make sure you have a C compiler installed on your system and/or
408         consider adjusting the CC environment variable if you installed
409         it in a non-standard prefix.
410         '''
411     sys.exit()
412
413   p.stdin.write('\n')
414   out = p.communicate()[0]
415
416   out = str(out).split('\n')
417
418   k = {}
419   for line in out:
420     lst = shlex.split(line)
421     if len(lst) > 2:
422       key = lst[1]
423       val = lst[2]
424       k[key] = val
425   return k
426
427
428 def is_arch_armv7():
429   """Check for ARMv7 instructions"""
430   cc_macros_cache = cc_macros()
431   return ('__ARM_ARCH_7__' in cc_macros_cache or
432           '__ARM_ARCH_7A__' in cc_macros_cache or
433           '__ARM_ARCH_7R__' in cc_macros_cache or
434           '__ARM_ARCH_7M__' in cc_macros_cache)
435
436
437 def is_arch_armv6():
438   """Check for ARMv6 instructions"""
439   cc_macros_cache = cc_macros()
440   return ('__ARM_ARCH_6__' in cc_macros_cache or
441           '__ARM_ARCH_6M__' in cc_macros_cache)
442
443
444 def is_arm_hard_float_abi():
445   """Check for hardfloat or softfloat eabi on ARM"""
446   # GCC versions 4.6 and above define __ARM_PCS or __ARM_PCS_VFP to specify
447   # the Floating Point ABI used (PCS stands for Procedure Call Standard).
448   # We use these as well as a couple of other defines to statically determine
449   # what FP ABI used.
450
451   return '__ARM_PCS_VFP' in cc_macros()
452
453
454 def host_arch_cc():
455   """Host architecture check using the CC command."""
456
457   k = cc_macros()
458
459   matchup = {
460     '__aarch64__' : 'arm64',
461     '__arm__'     : 'arm',
462     '__i386__'    : 'ia32',
463     '__mips__'    : 'mips',
464     '__x86_64__'  : 'x64',
465   }
466
467   rtn = 'ia32' # default
468
469   for i in matchup:
470     if i in k and k[i] != '0':
471       rtn = matchup[i]
472       break
473
474   return rtn
475
476
477 def host_arch_win():
478   """Host architecture check using environ vars (better way to do this?)"""
479
480   observed_arch = os.environ.get('PROCESSOR_ARCHITECTURE', 'x86')
481   arch = os.environ.get('PROCESSOR_ARCHITEW6432', observed_arch)
482
483   matchup = {
484     'AMD64'  : 'x64',
485     'x86'    : 'ia32',
486     'arm'    : 'arm',
487     'mips'   : 'mips',
488   }
489
490   return matchup.get(arch, 'ia32')
491
492
493 def configure_arm(o):
494   if options.arm_float_abi:
495     arm_float_abi = options.arm_float_abi
496   elif is_arm_hard_float_abi():
497     arm_float_abi = 'hard'
498   else:
499     arm_float_abi = 'default'
500
501   if is_arch_armv7():
502     o['variables']['arm_fpu'] = 'vfpv3'
503     o['variables']['arm_version'] = '7'
504   else:
505     o['variables']['arm_fpu'] = 'vfpv2'
506     o['variables']['arm_version'] = '6' if is_arch_armv6() else 'default'
507
508   o['variables']['arm_thumb'] = 0      # -marm
509   o['variables']['arm_float_abi'] = arm_float_abi
510
511   # Print warning when snapshot is enabled and building on armv6
512   if is_arch_armv6() and options.with_snapshot:
513     warn('when building on ARMv6, don\'t use --with-snapshot')
514
515
516 def configure_mips(o):
517   can_use_fpu_instructions = (options.mips_float_abi != 'soft')
518   o['variables']['v8_can_use_fpu_instructions'] = b(can_use_fpu_instructions)
519   o['variables']['v8_use_mips_abi_hardfloat'] = b(can_use_fpu_instructions)
520   o['variables']['mips_arch_variant'] = options.mips_arch_variant
521   o['variables']['mips_fpu_mode'] = options.mips_fpu_mode
522
523
524 def configure_node(o):
525   if options.dest_os == 'android':
526     o['variables']['OS'] = 'android'
527   o['variables']['node_prefix'] = os.path.expanduser(options.prefix or '')
528   o['variables']['node_install_npm'] = b(not options.without_npm)
529   o['default_configuration'] = 'Debug' if options.debug else 'Release'
530
531   host_arch = host_arch_win() if os.name == 'nt' else host_arch_cc()
532   target_arch = options.dest_cpu or host_arch
533   o['variables']['host_arch'] = host_arch
534   o['variables']['target_arch'] = target_arch
535
536   if target_arch != host_arch and options.with_snapshot:
537     o['variables']['want_separate_host_toolset'] = 1
538   else:
539     o['variables']['want_separate_host_toolset'] = 0
540
541   if target_arch == 'arm':
542     configure_arm(o)
543   elif (target_arch == 'arm64' and
544         not options.shared_openssl and
545         not options.without_ssl):
546     # FIXME(bnoordhuis) It's not possible to build the bundled openssl due to
547     # deps/openssl/asm/arm-elf-gas/modes/ghash-armv4.S, which is 32 bits only.
548     warn('not building openssl, arm64 not yet supported')
549     options.without_ssl = True
550   elif target_arch in ('mips', 'mipsel'):
551     configure_mips(o)
552
553   if flavor in ('solaris', 'mac', 'linux', 'freebsd'):
554     use_dtrace = not options.without_dtrace
555     # Don't enable by default on linux and freebsd
556     if flavor in ('linux', 'freebsd'):
557       use_dtrace = options.with_dtrace
558
559     if flavor == 'linux':
560       if options.systemtap_includes:
561         o['include_dirs'] += [options.systemtap_includes]
562     o['variables']['node_use_dtrace'] = b(use_dtrace)
563     o['variables']['uv_use_dtrace'] = b(use_dtrace)
564     o['variables']['uv_parent_path'] = '/deps/uv/'
565   elif options.with_dtrace:
566     raise Exception(
567        'DTrace is currently only supported on SunOS, MacOS or Linux systems.')
568   else:
569     o['variables']['node_use_dtrace'] = 'false'
570
571   # Enable Lttng if --with-lttng was defined. Use logic similar to
572   # ETW for windows. Lttng is only available on the Linux platform.
573   if flavor == 'linux':
574     o['variables']['node_use_lttng'] = b(options.with_lttng)
575   elif options.with_lttng:
576     raise Exception('lttng is only supported on Linux.')
577   else:
578     o['variables']['node_use_lttng'] = 'false'
579
580   if options.no_ifaddrs:
581     o['defines'] += ['SUNOS_NO_IFADDRS']
582
583   # By default, enable ETW on Windows.
584   if flavor == 'win':
585     o['variables']['node_use_etw'] = b(not options.without_etw)
586   elif options.with_etw:
587     raise Exception('ETW is only supported on Windows.')
588   else:
589     o['variables']['node_use_etw'] = 'false'
590
591   # By default, enable Performance counters on Windows.
592   if flavor == 'win':
593     o['variables']['node_use_perfctr'] = b(not options.without_perfctr)
594   elif options.with_perfctr:
595     raise Exception('Performance counter is only supported on Windows.')
596   else:
597     o['variables']['node_use_perfctr'] = 'false'
598
599   if options.tag:
600     o['variables']['node_tag'] = '-' + options.tag
601   else:
602     o['variables']['node_tag'] = ''
603
604   if options.v8_options:
605     o['variables']['node_v8_options'] = options.v8_options.replace('"', '\\"')
606
607
608 def configure_libz(o):
609   o['variables']['node_shared_zlib'] = b(options.shared_zlib)
610
611   # assume shared_zlib if one of these is set?
612   if options.shared_zlib_libpath:
613     o['libraries'] += ['-L%s' % options.shared_zlib_libpath]
614   if options.shared_zlib_libname:
615     o['libraries'] += ['-l%s' % options.shared_zlib_libname]
616   elif options.shared_zlib:
617     o['libraries'] += ['-lz']
618   if options.shared_zlib_includes:
619     o['include_dirs'] += [options.shared_zlib_includes]
620
621
622 def configure_http_parser(o):
623     o['variables']['node_shared_http_parser'] = b(options.shared_http_parser)
624
625     # assume shared http_parser if one of these is set?
626     if options.shared_http_parser_libpath:
627         o['libraries'] += ['-L%s' % options.shared_http_parser_libpath]
628     if options.shared_http_parser_libname:
629         o['libraries'] += ['-l%s' % options.shared_http_parser_libname]
630     elif options.shared_http_parser:
631         o['libraries'] += ['-lhttp_parser']
632     if options.shared_http_parser_includes:
633         o['include_dirs'] += [options.shared_http_parser_includes]
634
635
636 def configure_libuv(o):
637   o['variables']['node_shared_libuv'] = b(options.shared_libuv)
638
639   # assume shared libuv if one of these is set?
640   if options.shared_libuv_libpath:
641     o['libraries'] += ['-L%s' % options.shared_libuv_libpath]
642   else:
643     o['variables']['uv_library'] = 'static_library'
644
645   if options.shared_libuv_libname:
646     o['libraries'] += ['-l%s' % options.shared_libuv_libname]
647   elif options.shared_libuv:
648     o['libraries'] += ['-luv']
649   if options.shared_libuv_includes:
650     o['include_dirs'] += [options.shared_libuv_includes]
651
652
653 def configure_v8(o):
654   o['variables']['node_shared_v8'] = b(options.shared_v8)
655   o['variables']['v8_enable_gdbjit'] = 1 if options.gdb else 0
656   o['variables']['v8_no_strict_aliasing'] = 1  # Work around compiler bugs.
657   o['variables']['v8_optimized_debug'] = 0  # Compile with -O0 in debug builds.
658   o['variables']['v8_random_seed'] = 0  # Use a random seed for hash tables.
659   o['variables']['v8_use_snapshot'] = b(options.with_snapshot)
660
661   # assume shared_v8 if one of these is set?
662   if options.shared_v8_libpath:
663     o['libraries'] += ['-L%s' % options.shared_v8_libpath]
664   if options.shared_v8_libname:
665     o['libraries'] += ['-l%s' % options.shared_v8_libname]
666   elif options.shared_v8:
667     o['libraries'] += ['-lv8']
668   if options.shared_v8_includes:
669     o['include_dirs'] += [options.shared_v8_includes]
670
671
672 def configure_openssl(o):
673   o['variables']['node_use_openssl'] = b(not options.without_ssl)
674   o['variables']['node_shared_openssl'] = b(options.shared_openssl)
675   o['variables']['openssl_no_asm'] = (
676     1 if options.openssl_no_asm else 0)
677
678   if options.without_ssl:
679     return
680
681   if options.shared_openssl:
682     (libs, cflags) = pkg_config('openssl') or ('-lssl -lcrypto', '')
683
684     if options.shared_openssl_libpath:
685       o['libraries'] += ['-L%s' % options.shared_openssl_libpath]
686
687     if options.shared_openssl_libname:
688       libnames = options.shared_openssl_libname.split(',')
689       o['libraries'] += ['-l%s' % s for s in libnames]
690     else:
691       o['libraries'] += libs.split()
692
693     if options.shared_openssl_includes:
694       o['include_dirs'] += [options.shared_openssl_includes]
695     else:
696       o['cflags'] += cflags.split()
697
698
699 def configure_fullystatic(o):
700   if options.fully_static:
701     o['libraries'] += ['-static']
702     if flavor == 'mac':
703       print("Generation of static executable will not work on OSX "
704             "when using default compilation environment")
705
706
707 def configure_winsdk(o):
708   if flavor != 'win':
709     return
710
711   winsdk_dir = os.environ.get('WindowsSdkDir')
712
713   if winsdk_dir and os.path.isfile(winsdk_dir + '\\bin\\ctrpp.exe'):
714     print('Found ctrpp in WinSDK--will build generated files '
715           'into tools/msvs/genfiles.')
716     o['variables']['node_has_winsdk'] = 'true'
717     return
718
719   print('ctrpp not found in WinSDK path--using pre-gen files '
720         'from tools/msvs/genfiles.')
721
722 def write(filename, data):
723   filename = os.path.join(root_dir, filename)
724   print 'creating ', filename
725   f = open(filename, 'w+')
726   f.write(data)
727
728 do_not_edit = '# Do not edit. Generated by the configure script.\n'
729
730 def glob_to_var(dir_base, dir_sub):
731   list = []
732   dir_all = os.path.join(dir_base, dir_sub)
733   files = os.walk(dir_all)
734   for ent in files:
735     (path, dirs, files) = ent
736     for file in files:
737       if file.endswith('.cpp') or file.endswith('.c') or file.endswith('.h'):
738         list.append('%s/%s' % (dir_sub, file))
739     break
740   return list
741
742 def configure_intl(o):
743   icus = [
744     {
745       'url': 'http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-src.zip',
746       # from https://ssl.icu-project.org/files/icu4c/54.1/icu4c-src-54_1.md5:
747       'md5': '6b89d60e2f0e140898ae4d7f72323bca',
748     },
749   ]
750   def icu_download(path):
751     # download ICU, if needed
752     for icu in icus:
753       url = icu['url']
754       md5 = icu['md5']
755       local = url.split('/')[-1]
756       targetfile = os.path.join(root_dir, 'deps', local)
757       if not os.path.isfile(targetfile):
758         if nodedownload.candownload(auto_downloads, "icu"):
759           nodedownload.retrievefile(url, targetfile)
760       else:
761         print ' Re-using existing %s' % targetfile
762       if os.path.isfile(targetfile):
763         sys.stdout.write(' Checking file integrity with MD5:\r')
764         gotmd5 = nodedownload.md5sum(targetfile)
765         print ' MD5:      %s  %s' % (gotmd5, targetfile)
766         if (md5 == gotmd5):
767           return targetfile
768         else:
769           print ' Expected: %s      *MISMATCH*' % md5
770           print '\n ** Corrupted ZIP? Delete %s to retry download.\n' % targetfile
771     return None
772   icu_config = {
773     'variables': {}
774   }
775   icu_config_name = 'icu_config.gypi'
776   def write_config(data, name):
777     return
778
779   # write an empty file to start with
780   write(icu_config_name, do_not_edit +
781         pprint.pformat(icu_config, indent=2) + '\n')
782
783   # always set icu_small, node.gyp depends on it being defined.
784   o['variables']['icu_small'] = b(False)
785
786   with_intl = options.with_intl
787   with_icu_source = options.with_icu_source
788   have_icu_path = bool(options.with_icu_path)
789   if have_icu_path and with_intl:
790     print 'Error: Cannot specify both --with-icu-path and --with-intl'
791     sys.exit(1)
792   elif have_icu_path:
793     # Chromium .gyp mode: --with-icu-path
794     o['variables']['v8_enable_i18n_support'] = 1
795     # use the .gyp given
796     o['variables']['icu_gyp_path'] = options.with_icu_path
797     return
798   # --with-intl=<with_intl>
799   # set the default
800   if with_intl is None:
801     with_intl = 'none'  # The default mode of Intl
802   # sanity check localelist
803   if options.with_icu_locales and (with_intl != 'small-icu'):
804     print 'Error: --with-icu-locales only makes sense with --with-intl=small-icu'
805     sys.exit(1)
806   if with_intl == 'none' or with_intl is None:
807     o['variables']['v8_enable_i18n_support'] = 0
808     return  # no Intl
809   elif with_intl == 'small-icu':
810     # small ICU (English only)
811     o['variables']['v8_enable_i18n_support'] = 1
812     o['variables']['icu_small'] = b(True)
813     with_icu_locales = options.with_icu_locales
814     if not with_icu_locales:
815       with_icu_locales = 'root,en'
816     locs = set(with_icu_locales.split(','))
817     locs.add('root')  # must have root
818     o['variables']['icu_locales'] = string.join(locs,',')
819   elif with_intl == 'full-icu':
820     # full ICU
821     o['variables']['v8_enable_i18n_support'] = 1
822   elif with_intl == 'system-icu':
823     # ICU from pkg-config.
824     o['variables']['v8_enable_i18n_support'] = 1
825     pkgicu = pkg_config('icu-i18n')
826     if not pkgicu:
827       print 'Error: could not load pkg-config data for "icu-i18n".'
828       print 'See above errors or the README.md.'
829       sys.exit(1)
830     (libs, cflags) = pkgicu
831     o['libraries'] += libs.split()
832     o['cflags'] += cflags.split()
833     # use the "system" .gyp
834     o['variables']['icu_gyp_path'] = 'tools/icu/icu-system.gyp'
835     return
836   else:
837     print 'Error: unknown value --with-intl=%s' % with_intl
838     sys.exit(1)
839   # Note: non-ICU implementations could use other 'with_intl'
840   # values.
841
842   # this is just the 'deps' dir. Used for unpacking.
843   icu_parent_path = os.path.join(root_dir, 'deps')
844
845   # The full path to the ICU source directory.
846   icu_full_path = os.path.join(icu_parent_path, 'icu')
847
848   # icu-tmp is used to download and unpack the ICU tarball.
849   icu_tmp_path = os.path.join(icu_parent_path, 'icu-tmp')
850
851   # --with-icu-source processing
852   # first, check that they didn't pass --with-icu-source=deps/icu
853   if with_icu_source and os.path.abspath(icu_full_path) == os.path.abspath(with_icu_source):
854     print 'Ignoring redundant --with-icu-source=%s' % (with_icu_source)
855     with_icu_source = None
856   # if with_icu_source is still set, try to use it.
857   if with_icu_source:
858     if os.path.isdir(icu_full_path):
859       print 'Deleting old ICU source: %s' % (icu_full_path)
860       shutil.rmtree(icu_full_path)
861     # now, what path was given?
862     if os.path.isdir(with_icu_source):
863       # it's a path. Copy it.
864       print '%s -> %s' % (with_icu_source, icu_full_path)
865       shutil.copytree(with_icu_source, icu_full_path)
866     else:
867       # could be file or URL.
868       # Set up temporary area
869       if os.path.isdir(icu_tmp_path):
870         shutil.rmtree(icu_tmp_path)
871       os.mkdir(icu_tmp_path)
872       icu_tarball = None
873       if os.path.isfile(with_icu_source):
874         # it's a file. Try to unpack it.
875         icu_tarball = with_icu_source
876       else:
877         # Can we download it?
878         local = os.path.join(icu_tmp_path, with_icu_source.split('/')[-1])  # local part
879         icu_tarball = nodedownload.retrievefile(with_icu_source, local)
880       # continue with "icu_tarball"
881       nodedownload.unpack(icu_tarball, icu_tmp_path)
882       # Did it unpack correctly? Should contain 'icu'
883       tmp_icu = os.path.join(icu_tmp_path, 'icu')
884       if os.path.isdir(tmp_icu):
885         os.rename(tmp_icu, icu_full_path)
886         shutil.rmtree(icu_tmp_path)
887       else:
888         print ' Error: --with-icu-source=%s did not result in an "icu" dir.' % with_icu_source
889         shutil.rmtree(icu_tmp_path)
890         sys.exit(1)
891
892   # ICU mode. (icu-generic.gyp)
893   o['variables']['icu_gyp_path'] = 'tools/icu/icu-generic.gyp'
894   # ICU source dir relative to root
895   o['variables']['icu_path'] = icu_full_path
896   if not os.path.isdir(icu_full_path):
897     print '* ECMA-402 (Intl) support didn\'t find ICU in %s..' % (icu_full_path)
898     # can we download (or find) a zipfile?
899     localzip = icu_download(icu_full_path)
900     if localzip:
901       nodedownload.unpack(localzip, icu_parent_path)
902   if not os.path.isdir(icu_full_path):
903     print ' Cannot build Intl without ICU in %s.' % (icu_full_path)
904     print ' (Fix, or disable with "--with-intl=none" )'
905     sys.exit(1)
906   else:
907     print '* Using ICU in %s' % (icu_full_path)
908   # Now, what version of ICU is it? We just need the "major", such as 54.
909   # uvernum.h contains it as a #define.
910   uvernum_h = os.path.join(icu_full_path, 'source/common/unicode/uvernum.h')
911   if not os.path.isfile(uvernum_h):
912     print ' Error: could not load %s - is ICU installed?' % uvernum_h
913     sys.exit(1)
914   icu_ver_major = None
915   matchVerExp = r'^\s*#define\s+U_ICU_VERSION_SHORT\s+"([^"]*)".*'
916   match_version = re.compile(matchVerExp)
917   for line in open(uvernum_h).readlines():
918     m = match_version.match(line)
919     if m:
920       icu_ver_major = m.group(1)
921   if not icu_ver_major:
922     print ' Could not read U_ICU_VERSION_SHORT version from %s' % uvernum_h
923     sys.exit(1)
924   icu_endianness = sys.byteorder[0];  # TODO(srl295): EBCDIC should be 'e'
925   o['variables']['icu_ver_major'] = icu_ver_major
926   o['variables']['icu_endianness'] = icu_endianness
927   icu_data_file_l = 'icudt%s%s.dat' % (icu_ver_major, 'l')
928   icu_data_file = 'icudt%s%s.dat' % (icu_ver_major, icu_endianness)
929   # relative to configure
930   icu_data_path = os.path.join(icu_full_path,
931                                'source/data/in',
932                                icu_data_file_l)
933   # relative to dep..
934   icu_data_in = os.path.join('../../deps/icu/source/data/in', icu_data_file_l)
935   if not os.path.isfile(icu_data_path) and icu_endianness != 'l':
936     # use host endianness
937     icu_data_path = os.path.join(icu_full_path,
938                                  'source/data/in',
939                                  icu_data_file)
940     # relative to dep..
941     icu_data_in = os.path.join('icu/source/data/in',
942                                icu_data_file)
943   # this is the input '.dat' file to use .. icudt*.dat
944   # may be little-endian if from a icu-project.org tarball
945   o['variables']['icu_data_in'] = icu_data_in
946   # this is the icudt*.dat file which node will be using (platform endianness)
947   o['variables']['icu_data_file'] = icu_data_file
948   if not os.path.isfile(icu_data_path):
949     print ' Error: ICU prebuilt data file %s does not exist.' % icu_data_path
950     print ' See the README.md.'
951     # .. and we're not about to build it from .gyp!
952     sys.exit(1)
953   # map from variable name to subdirs
954   icu_src = {
955     'stubdata': 'stubdata',
956     'common': 'common',
957     'i18n': 'i18n',
958     'io': 'io',
959     'tools': 'tools/toolutil',
960     'genccode': 'tools/genccode',
961     'genrb': 'tools/genrb',
962     'icupkg': 'tools/icupkg',
963   }
964   # this creates a variable icu_src_XXX for each of the subdirs
965   # with a list of the src files to use
966   for i in icu_src:
967     var  = 'icu_src_%s' % i
968     path = '../../deps/icu/source/%s' % icu_src[i]
969     icu_config['variables'][var] = glob_to_var('tools/icu', path)
970   # write updated icu_config.gypi with a bunch of paths
971   write(icu_config_name, do_not_edit +
972         pprint.pformat(icu_config, indent=2) + '\n')
973   return  # end of configure_intl
974
975 # Print a warning when the compiler is too old.
976 check_compiler()
977
978 # determine the "flavor" (operating system) we're building for,
979 # leveraging gyp's GetFlavor function
980 flavor_params = {}
981 if (options.dest_os):
982   flavor_params['flavor'] = options.dest_os
983 flavor = GetFlavor(flavor_params)
984
985 output = {
986   'variables': { 'python': sys.executable },
987   'include_dirs': [],
988   'libraries': [],
989   'defines': [],
990   'cflags': [],
991 }
992
993 configure_node(output)
994 configure_libz(output)
995 configure_http_parser(output)
996 configure_libuv(output)
997 configure_v8(output)
998 configure_openssl(output)
999 configure_winsdk(output)
1000 configure_intl(output)
1001 configure_fullystatic(output)
1002
1003 # variables should be a root level element,
1004 # move everything else to target_defaults
1005 variables = output['variables']
1006 del output['variables']
1007 output = {
1008   'variables': variables,
1009   'target_defaults': output
1010 }
1011 pprint.pprint(output, indent=2)
1012
1013 write('config.gypi', do_not_edit +
1014       pprint.pformat(output, indent=2) + '\n')
1015
1016 config = {
1017   'BUILDTYPE': 'Debug' if options.debug else 'Release',
1018   'USE_XCODE': str(int(options.use_xcode or 0)),
1019   'PYTHON': sys.executable,
1020 }
1021
1022 if options.prefix:
1023   config['PREFIX'] = options.prefix
1024
1025 config = '\n'.join(map('='.join, config.iteritems())) + '\n'
1026
1027 write('config.mk',
1028       '# Do not edit. Generated by the configure script.\n' + config)
1029
1030 gyp_args = [sys.executable, 'tools/gyp_node.py', '--no-parallel']
1031
1032 if options.use_xcode:
1033   gyp_args += ['-f', 'xcode']
1034 elif flavor == 'win' and sys.platform != 'msys':
1035   gyp_args += ['-f', 'msvs', '-G', 'msvs_version=auto']
1036 else:
1037   gyp_args += ['-f', 'make-' + flavor]
1038
1039 gyp_args += args
1040
1041 if warn.warned:
1042   warn('warnings were emitted in the configure phase')
1043
1044 sys.exit(subprocess.call(gyp_args))