10 CC = os.environ.get('CC', 'cc')
12 root_dir = os.path.dirname(__file__)
13 sys.path.insert(0, os.path.join(root_dir, 'deps', 'v8', 'tools'))
16 parser = optparse.OptionParser()
18 parser.add_option("--debug",
21 help="Also build debug build")
23 parser.add_option("--prefix",
26 help="Select the install prefix (defaults to /usr/local)")
28 parser.add_option("--without-npm",
31 help="Don\'t install the bundled npm package manager")
33 parser.add_option("--without-ssl",
36 help="Build without SSL")
38 parser.add_option("--without-snapshot",
40 dest="without_snapshot",
41 help="Build without snapshotting V8 libraries. You might want to set"
42 " this for cross-compiling. [Default: False]")
44 parser.add_option("--shared-v8",
47 help="Link to a shared V8 DLL instead of static linking")
49 parser.add_option("--shared-v8-includes",
51 dest="shared_v8_includes",
52 help="Directory containing V8 header files")
54 parser.add_option("--shared-v8-libpath",
56 dest="shared_v8_libpath",
57 help="A directory to search for the shared V8 DLL")
59 parser.add_option("--shared-v8-libname",
61 dest="shared_v8_libname",
62 help="Alternative lib name to link to (default: 'v8')")
64 parser.add_option("--shared-openssl",
66 dest="shared_openssl",
67 help="Link to a shared OpenSSl DLL instead of static linking")
69 parser.add_option("--shared-openssl-includes",
71 dest="shared_openssl_includes",
72 help="Directory containing OpenSSL header files")
74 parser.add_option("--shared-openssl-libpath",
76 dest="shared_openssl_libpath",
77 help="A directory to search for the shared OpenSSL DLLs")
79 parser.add_option("--shared-openssl-libname",
81 dest="shared_openssl_libname",
82 help="Alternative lib name to link to (default: 'crypto,ssl')")
85 parser.add_option("--openssl-use-sys",
87 dest="shared_openssl",
88 help=optparse.SUPPRESS_HELP)
91 parser.add_option("--openssl-includes",
93 dest="shared_openssl_includes",
94 help=optparse.SUPPRESS_HELP)
97 parser.add_option("--openssl-libpath",
99 dest="shared_openssl_libpath",
100 help=optparse.SUPPRESS_HELP)
102 # TODO document when we've decided on what the tracing API and its options will
104 parser.add_option("--systemtap-includes",
106 dest="systemtap_includes",
107 help=optparse.SUPPRESS_HELP)
109 parser.add_option("--no-ssl2",
112 help="Disable OpenSSL v2")
114 parser.add_option("--shared-zlib",
117 help="Link to a shared zlib DLL instead of static linking")
119 parser.add_option("--shared-zlib-includes",
121 dest="shared_zlib_includes",
122 help="Directory containing zlib header files")
124 parser.add_option("--shared-zlib-libpath",
126 dest="shared_zlib_libpath",
127 help="A directory to search for the shared zlib DLL")
129 parser.add_option("--shared-zlib-libname",
131 dest="shared_zlib_libname",
132 help="Alternative lib name to link to (default: 'z')")
134 parser.add_option("--shared-http-parser",
136 dest="shared_http_parser",
137 help="Link to a shared http_parser DLL instead of static linking")
139 parser.add_option("--shared-http-parser-includes",
141 dest="shared_http_parser_includes",
142 help="Directory containing http_parser header files")
144 parser.add_option("--shared-http-parser-libpath",
146 dest="shared_http_parser_libpath",
147 help="A directory to search for the shared http_parser DLL")
149 parser.add_option("--shared-http-parser-libname",
151 dest="shared_http_parser_libname",
152 help="Alternative lib name to link to (default: 'http_parser')")
154 parser.add_option("--shared-cares",
157 help="Link to a shared cares DLL instead of static linking")
159 parser.add_option("--shared-cares-includes",
161 dest="shared_cares_includes",
162 help="Directory containing cares header files")
164 parser.add_option("--shared-cares-libpath",
166 dest="shared_cares_libpath",
167 help="A directory to search for the shared cares DLL")
169 parser.add_option("--shared-cares-libname",
171 dest="shared_cares_libname",
172 help="Alternative lib name to link to (default: 'cares')")
174 parser.add_option("--shared-libuv",
177 help="Link to a shared libuv DLL instead of static linking")
179 parser.add_option("--shared-libuv-includes",
181 dest="shared_libuv_includes",
182 help="Directory containing libuv header files")
184 parser.add_option("--shared-libuv-libpath",
186 dest="shared_libuv_libpath",
187 help="A directory to search for the shared libuv DLL")
189 parser.add_option("--shared-libuv-libname",
191 dest="shared_libuv_libname",
192 help="Alternative lib name to link to (default: 'uv')")
194 parser.add_option("--with-dtrace",
197 help="Build with DTrace (default is true on sunos)")
199 parser.add_option("--without-dtrace",
201 dest="without_dtrace",
202 help="Build without DTrace")
204 parser.add_option("--with-etw",
207 help="Build with ETW (default is true on Windows)")
209 parser.add_option("--without-etw",
212 help="Build without ETW")
214 parser.add_option("--with-perfctr",
217 help="Build with performance counters (default is true on Windows)")
219 parser.add_option("--without-perfctr",
221 dest="without_perfctr",
222 help="Build without performance counters")
224 # CHECKME does this still work with recent releases of V8?
225 parser.add_option("--gdb",
228 help="add gdb support")
230 parser.add_option("--dest-cpu",
233 help="CPU architecture to build for. Valid values are: arm, ia32, x64")
235 parser.add_option("--dest-os",
238 help="Operating system to build for. Valid values are: "
239 "win, mac, solaris, freebsd, linux")
241 parser.add_option("--no-ifaddrs",
244 help="Use on deprecated SunOS systems that do not support ifaddrs.h")
246 parser.add_option("--with-arm-float-abi",
248 dest="arm_float_abi",
249 help="Specifies which floating-point ABI to use. Valid values are: "
250 "soft, softfp, hard")
252 parser.add_option("--ninja",
255 help="Generate files for the ninja build system")
257 # Using --unsafe-optimizations voids your warranty.
258 parser.add_option("--unsafe-optimizations",
260 dest="unsafe_optimizations",
261 help=optparse.SUPPRESS_HELP)
263 parser.add_option("--xcode",
266 help="Generate build files for use with xcode")
268 parser.add_option("--tag",
271 help="Custom build tag")
273 (options, args) = parser.parse_args()
277 """Returns the string 'true' if value is truthy, 'false' otherwise."""
285 cmd = os.popen('pkg-config --libs %s' % pkg, 'r')
286 libs = cmd.readline().strip()
288 if (ret): return None
290 cmd = os.popen('pkg-config --cflags %s' % pkg, 'r')
291 cflags = cmd.readline().strip()
293 if (ret): return None
295 return (libs, cflags)
299 """Checks predefined macros using the CC command."""
302 p = subprocess.Popen(shlex.split(CC) + ['-dM', '-E', '-'],
303 stdin=subprocess.PIPE,
304 stdout=subprocess.PIPE,
305 stderr=subprocess.PIPE)
307 print '''Node.js configure error: No acceptable C compiler found!
309 Please make sure you have a C compiler installed on your system and/or
310 consider adjusting the CC environment variable if you installed
311 it in a non-standard prefix.
316 out = p.communicate()[0]
318 out = str(out).split('\n')
322 lst = shlex.split(line)
331 """Check for ARMv7 instructions"""
332 cc_macros_cache = cc_macros()
333 return ('__ARM_ARCH_7__' in cc_macros_cache or
334 '__ARM_ARCH_7A__' in cc_macros_cache or
335 '__ARM_ARCH_7R__' in cc_macros_cache or
336 '__ARM_ARCH_7M__' in cc_macros_cache)
340 """Check for ARM NEON support"""
341 return '__ARM_NEON__' in cc_macros()
344 def is_arm_hard_float_abi():
345 """Check for hardfloat or softfloat eabi on ARM"""
346 # GCC versions 4.6 and above define __ARM_PCS or __ARM_PCS_VFP to specify
347 # the Floating Point ABI used (PCS stands for Procedure Call Standard).
348 # We use these as well as a couple of other defines to statically determine
350 # GCC versions 4.4 and below don't support hard-fp.
351 # GCC versions 4.5 may support hard-fp without defining __ARM_PCS or
354 if compiler_version() >= (4, 6, 0):
355 return '__ARM_PCS_VFP' in cc_macros()
356 elif compiler_version() < (4, 5, 0):
358 elif '__ARM_PCS_VFP' in cc_macros():
360 elif ('__ARM_PCS' in cc_macros() or
361 '__SOFTFP' in cc_macros() or
362 not '__VFP_FP__' in cc_macros()):
365 print '''Node.js configure error: Your version of GCC does not report
366 the Floating-Point ABI to compile for your hardware
368 Please manually specify which floating-point ABI to use with the
369 --with-arm-float-abi option.
375 """Host architecture check using the CC command."""
380 '__x86_64__' : 'x64',
385 rtn = 'ia32' # default
388 if i in k and k[i] != '0':
396 """Host architecture check using environ vars (better way to do this?)"""
398 arch = os.environ.get('PROCESSOR_ARCHITECTURE', 'x86')
406 return matchup.get(arch, 'ia32')
409 def compiler_version():
411 proc = subprocess.Popen(shlex.split(CC) + ['--version'], stdout=subprocess.PIPE)
415 is_clang = 'clang' in proc.communicate()[0].split('\n')[0]
417 proc = subprocess.Popen(shlex.split(CC) + ['-dumpversion'], stdout=subprocess.PIPE)
418 version = tuple(map(int, proc.communicate()[0].split('.')))
420 return (version, is_clang)
423 def configure_arm(o):
424 if options.arm_float_abi:
425 arm_float_abi = options.arm_float_abi
427 arm_float_abi = 'hard' if is_arm_hard_float_abi() else 'default'
428 o['variables']['armv7'] = int(is_arch_armv7())
429 o['variables']['arm_fpu'] = 'vfpv3' # V8 3.18 no longer supports VFP2.
430 o['variables']['arm_neon'] = int(is_arm_neon())
431 o['variables']['arm_thumb'] = 0 # -marm
432 o['variables']['arm_float_abi'] = arm_float_abi
435 def configure_node(o):
436 o['variables']['v8_enable_gdbjit'] = 1 if options.gdb else 0
437 o['variables']['v8_no_strict_aliasing'] = 1 # work around compiler bugs
438 o['variables']['node_prefix'] = os.path.expanduser(options.prefix or '')
439 o['variables']['node_install_npm'] = b(not options.without_npm)
440 o['variables']['node_unsafe_optimizations'] = (
441 1 if options.unsafe_optimizations else 0)
442 o['default_configuration'] = 'Debug' if options.debug else 'Release'
444 host_arch = host_arch_win() if os.name == 'nt' else host_arch_cc()
445 target_arch = options.dest_cpu or host_arch
446 o['variables']['host_arch'] = host_arch
447 o['variables']['target_arch'] = target_arch
449 if target_arch == 'arm':
452 cc_version, is_clang = compiler_version()
453 o['variables']['clang'] = 1 if is_clang else 0
455 if not is_clang and cc_version != 0:
456 o['variables']['gcc_version'] = 10 * cc_version[0] + cc_version[1]
458 # clang has always supported -fvisibility=hidden, right?
459 if not is_clang and cc_version < (4,0,0):
460 o['variables']['visibility'] = ''
462 # By default, enable DTrace on SunOS systems. Don't allow it on other
463 # systems, since it won't work. (The MacOS build process is different than
464 # SunOS, and we haven't implemented it.)
465 if sys.platform.startswith('sunos') or sys.platform.startswith('darwin'):
466 o['variables']['node_use_dtrace'] = b(not options.without_dtrace)
467 elif sys.platform.startswith('linux'):
468 o['variables']['node_use_dtrace'] = 'false'
469 o['variables']['node_use_systemtap'] = b(options.with_dtrace)
470 if options.systemtap_includes:
471 o['include_dirs'] += [options.systemtap_includes]
472 elif options.with_dtrace:
474 'DTrace is currently only supported on SunOS or Linux systems.')
476 o['variables']['node_use_dtrace'] = 'false'
477 o['variables']['node_use_systemtap'] = 'false'
479 if options.no_ifaddrs:
480 o['defines'] += ['SUNOS_NO_IFADDRS']
482 # By default, enable ETW on Windows.
483 if sys.platform.startswith('win32'):
484 o['variables']['node_use_etw'] = b(not options.without_etw);
485 elif options.with_etw:
486 raise Exception('ETW is only supported on Windows.')
488 o['variables']['node_use_etw'] = 'false'
490 # By default, enable Performance counters on Windows.
491 if sys.platform.startswith('win32'):
492 o['variables']['node_use_perfctr'] = b(not options.without_perfctr);
493 elif options.with_perfctr:
494 raise Exception('Performance counter is only supported on Windows.')
496 o['variables']['node_use_perfctr'] = 'false'
499 o['variables']['node_tag'] = '-' + options.tag
501 o['variables']['node_tag'] = ''
504 def configure_libz(o):
505 o['variables']['node_shared_zlib'] = b(options.shared_zlib)
507 # assume shared_zlib if one of these is set?
508 if options.shared_zlib_libpath:
509 o['libraries'] += ['-L%s' % options.shared_zlib_libpath]
510 if options.shared_zlib_libname:
511 o['libraries'] += ['-l%s' % options.shared_zlib_libname]
512 elif options.shared_zlib:
513 o['libraries'] += ['-lz']
514 if options.shared_zlib_includes:
515 o['include_dirs'] += [options.shared_zlib_includes]
518 def configure_http_parser(o):
519 o['variables']['node_shared_http_parser'] = b(options.shared_http_parser)
521 # assume shared http_parser if one of these is set?
522 if options.shared_http_parser_libpath:
523 o['libraries'] += ['-L%s' % options.shared_http_parser_libpath]
524 if options.shared_http_parser_libname:
525 o['libraries'] += ['-l%s' % options.shared_http_parser_libname]
526 elif options.shared_http_parser:
527 o['libraries'] += ['-lhttp_parser']
528 if options.shared_http_parser_includes:
529 o['include_dirs'] += [options.shared_http_parser_includes]
532 def configure_cares(o):
533 o['variables']['node_shared_cares'] = b(options.shared_cares)
535 # assume shared cares if one of these is set?
536 if options.shared_cares_libpath:
537 o['libraries'] += ['-L%s' % options.shared_cares_libpath]
538 if options.shared_cares_libname:
539 o['libraries'] += ['-l%s' % options.shared_cares_libname]
540 elif options.shared_cares:
541 o['libraries'] += ['-lcares']
542 if options.shared_cares_includes:
543 o['include_dirs'] += [options.shared_cares_includes]
546 def configure_libuv(o):
547 o['variables']['node_shared_libuv'] = b(options.shared_libuv)
549 # assume shared libuv if one of these is set?
550 if options.shared_libuv_libpath:
551 o['libraries'] += ['-L%s' % options.shared_libuv_libpath]
552 if options.shared_libuv_libname:
553 o['libraries'] += ['-l%s' % options.shared_libuv_libname]
554 elif options.shared_libuv:
555 o['libraries'] += ['-luv']
556 if options.shared_libuv_includes:
557 o['include_dirs'] += [options.shared_libuv_includes]
561 o['variables']['v8_use_snapshot'] = b(not options.without_snapshot)
562 o['variables']['node_shared_v8'] = b(options.shared_v8)
564 # assume shared_v8 if one of these is set?
565 if options.shared_v8_libpath:
566 o['libraries'] += ['-L%s' % options.shared_v8_libpath]
567 if options.shared_v8_libname:
568 o['libraries'] += ['-l%s' % options.shared_v8_libname]
569 elif options.shared_v8:
570 o['libraries'] += ['-lv8']
571 if options.shared_v8_includes:
572 o['include_dirs'] += [options.shared_v8_includes]
575 def configure_openssl(o):
576 o['variables']['node_use_openssl'] = b(not options.without_ssl)
577 o['variables']['node_shared_openssl'] = b(options.shared_openssl)
579 if options.without_ssl:
583 o['defines'] += ['OPENSSL_NO_SSL2=1']
585 if options.shared_openssl:
586 (libs, cflags) = pkg_config('openssl') or ('-lssl -lcrypto', '')
588 if options.shared_openssl_libpath:
589 o['libraries'] += ['-L%s' % options.shared_openssl_libpath]
591 if options.shared_openssl_libname:
592 libnames = options.shared_openssl_libname.split(',')
593 o['libraries'] += ['-l%s' % s for s in libnames]
595 o['libraries'] += libs.split()
597 if options.shared_openssl_includes:
598 o['include_dirs'] += [options.shared_openssl_includes]
600 o['cflags'] += cflags.split()
603 def configure_winsdk(o):
604 if not sys.platform.startswith('win32'):
607 winsdk_dir = os.environ.get("WindowsSdkDir")
609 if winsdk_dir and os.path.isfile(winsdk_dir + '\\bin\\ctrpp.exe'):
610 print "Found ctrpp in WinSDK--will build generated files into tools/msvs/genfiles."
611 o['variables']['node_has_winsdk'] = 'true'
614 print "ctrpp not found in WinSDK path--using pre-gen files from tools/msvs/genfiles."
618 'variables': { 'python': sys.executable },
625 configure_node(output)
626 configure_libz(output)
627 configure_http_parser(output)
628 configure_cares(output)
629 configure_libuv(output)
631 configure_openssl(output)
632 configure_winsdk(output)
634 # variables should be a root level element,
635 # move everything else to target_defaults
636 variables = output['variables']
637 del output['variables']
639 'variables': variables,
640 'target_defaults': output
642 pprint.pprint(output, indent=2)
644 def write(filename, data):
645 filename = os.path.join(root_dir, filename)
646 print "creating ", filename
647 f = open(filename, 'w+')
650 write('config.gypi', "# Do not edit. Generated by the configure script.\n" +
651 pprint.pformat(output, indent=2) + "\n")
654 'BUILDTYPE': 'Debug' if options.debug else 'Release',
655 'USE_NINJA': str(int(options.use_ninja or 0)),
656 'USE_XCODE': str(int(options.use_xcode or 0)),
657 'PYTHON': sys.executable,
661 config['PREFIX'] = options.prefix
663 config = '\n'.join(map('='.join, config.iteritems())) + '\n'
666 '# Do not edit. Generated by the configure script.\n' + config)
668 if options.use_ninja:
669 gyp_args = ['-f', 'ninja']
670 elif options.use_xcode:
671 gyp_args = ['-f', 'xcode']
672 elif os.name == 'nt':
673 gyp_args = ['-f', 'msvs', '-G', 'msvs_version=auto']
674 elif options.dest_os:
675 gyp_args = ['-f', 'make-' + options.dest_os]
677 gyp_args = ['-f', 'make']
679 subprocess.call([sys.executable, 'tools/gyp_node'] + gyp_args)