2011-11-15 04:02:44 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import optparse
|
|
|
|
import os
|
2011-12-18 23:53:07 +01:00
|
|
|
import pprint
|
2012-03-02 02:14:27 +01:00
|
|
|
import re
|
2011-11-15 17:17:05 +01:00
|
|
|
import subprocess
|
2011-11-15 04:02:44 +01:00
|
|
|
import sys
|
2010-10-26 03:17:19 +02:00
|
|
|
|
2012-03-05 16:55:24 +01:00
|
|
|
CC = os.environ.get('CC', 'cc')
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
root_dir = os.path.dirname(__file__)
|
|
|
|
sys.path.insert(0, os.path.join(root_dir, 'deps', 'v8', 'tools'))
|
2010-11-02 00:03:32 +01:00
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
# parse our options
|
|
|
|
parser = optparse.OptionParser()
|
2010-11-02 00:03:32 +01:00
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
parser.add_option("--debug",
|
|
|
|
action="store_true",
|
|
|
|
dest="debug",
|
|
|
|
help="Also build debug build")
|
|
|
|
|
|
|
|
parser.add_option("--prefix",
|
|
|
|
action="store",
|
|
|
|
dest="prefix",
|
|
|
|
help="Select the install prefix (defaults to /usr/local)")
|
|
|
|
|
2011-12-17 09:09:14 +01:00
|
|
|
parser.add_option("--without-npm",
|
|
|
|
action="store_true",
|
|
|
|
dest="without_npm",
|
|
|
|
help="Don\'t install the bundled npm package manager")
|
|
|
|
|
2012-01-17 06:48:50 +01:00
|
|
|
parser.add_option("--without-waf",
|
|
|
|
action="store_true",
|
|
|
|
dest="without_waf",
|
|
|
|
help="Don\'t install node-waf")
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
parser.add_option("--without-ssl",
|
|
|
|
action="store_true",
|
|
|
|
dest="without_ssl",
|
|
|
|
help="Build without SSL")
|
|
|
|
|
|
|
|
parser.add_option("--without-snapshot",
|
|
|
|
action="store_true",
|
|
|
|
dest="without_snapshot",
|
|
|
|
help="Build without snapshotting V8 libraries. You might want to set"
|
|
|
|
" this for cross-compiling. [Default: False]")
|
|
|
|
|
|
|
|
parser.add_option("--shared-v8",
|
|
|
|
action="store_true",
|
|
|
|
dest="shared_v8",
|
|
|
|
help="Link to a shared V8 DLL instead of static linking")
|
|
|
|
|
|
|
|
parser.add_option("--shared-v8-includes",
|
|
|
|
action="store",
|
|
|
|
dest="shared_v8_includes",
|
|
|
|
help="Directory containing V8 header files")
|
|
|
|
|
|
|
|
parser.add_option("--shared-v8-libpath",
|
|
|
|
action="store",
|
|
|
|
dest="shared_v8_libpath",
|
|
|
|
help="A directory to search for the shared V8 DLL")
|
|
|
|
|
|
|
|
parser.add_option("--shared-v8-libname",
|
|
|
|
action="store",
|
|
|
|
dest="shared_v8_libname",
|
|
|
|
help="Alternative lib name to link to (default: 'v8')")
|
|
|
|
|
2011-12-17 00:00:23 +01:00
|
|
|
parser.add_option("--openssl-use-sys",
|
2012-03-17 20:57:24 +01:00
|
|
|
action="store_true",
|
2011-12-17 00:00:23 +01:00
|
|
|
dest="openssl_use_sys",
|
|
|
|
help="Use the system OpenSSL instead of one included with Node")
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
parser.add_option("--openssl-includes",
|
|
|
|
action="store",
|
|
|
|
dest="openssl_includes",
|
|
|
|
help="A directory to search for the OpenSSL includes")
|
|
|
|
|
|
|
|
parser.add_option("--openssl-libpath",
|
|
|
|
action="store",
|
|
|
|
dest="openssl_libpath",
|
|
|
|
help="A directory to search for the OpenSSL libraries")
|
|
|
|
|
|
|
|
parser.add_option("--no-ssl2",
|
|
|
|
action="store_true",
|
|
|
|
dest="no_ssl2",
|
|
|
|
help="Disable OpenSSL v2")
|
|
|
|
|
2012-02-27 00:02:21 +01:00
|
|
|
parser.add_option("--shared-zlib",
|
|
|
|
action="store_true",
|
|
|
|
dest="shared_zlib",
|
|
|
|
help="Link to a shared zlib DLL instead of static linking")
|
|
|
|
|
|
|
|
parser.add_option("--shared-zlib-includes",
|
|
|
|
action="store",
|
|
|
|
dest="shared_zlib_includes",
|
|
|
|
help="Directory containing zlib header files")
|
|
|
|
|
|
|
|
parser.add_option("--shared-zlib-libpath",
|
|
|
|
action="store",
|
|
|
|
dest="shared_zlib_libpath",
|
|
|
|
help="A directory to search for the shared zlib DLL")
|
|
|
|
|
|
|
|
parser.add_option("--shared-zlib-libname",
|
|
|
|
action="store",
|
|
|
|
dest="shared_zlib_libname",
|
|
|
|
help="Alternative lib name to link to (default: 'z')")
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
parser.add_option("--with-dtrace",
|
|
|
|
action="store_true",
|
|
|
|
dest="with_dtrace",
|
2012-03-28 19:26:10 +02:00
|
|
|
help="Build with DTrace (default is true on supported systems)")
|
|
|
|
|
|
|
|
parser.add_option("--without-dtrace",
|
|
|
|
action="store_true",
|
|
|
|
dest="without_dtrace",
|
|
|
|
help="Build without DTrace")
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
# CHECKME does this still work with recent releases of V8?
|
|
|
|
parser.add_option("--gdb",
|
|
|
|
action="store_true",
|
|
|
|
dest="gdb",
|
|
|
|
help="add gdb support")
|
|
|
|
|
|
|
|
parser.add_option("--dest-cpu",
|
|
|
|
action="store",
|
|
|
|
dest="dest_cpu",
|
|
|
|
help="CPU architecture to build for. Valid values are: arm, ia32, x64")
|
|
|
|
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
|
|
|
|
2011-11-29 16:27:52 +01:00
|
|
|
def b(value):
|
|
|
|
"""Returns the string 'true' if value is truthy, 'false' otherwise."""
|
|
|
|
if value:
|
|
|
|
return 'true'
|
|
|
|
else:
|
|
|
|
return 'false'
|
|
|
|
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
def pkg_config(pkg):
|
|
|
|
cmd = os.popen('pkg-config --libs %s' % pkg, 'r')
|
|
|
|
libs = cmd.readline().strip()
|
|
|
|
ret = cmd.close()
|
|
|
|
if (ret): return None
|
|
|
|
|
|
|
|
cmd = os.popen('pkg-config --cflags %s' % pkg, 'r')
|
|
|
|
cflags = cmd.readline().strip()
|
|
|
|
ret = cmd.close()
|
|
|
|
if (ret): return None
|
|
|
|
|
|
|
|
return (libs, cflags)
|
|
|
|
|
|
|
|
|
2012-03-15 23:17:25 +01:00
|
|
|
def host_arch_cc():
|
|
|
|
"""Host architecture check using the CC command."""
|
2012-02-20 21:27:07 +01:00
|
|
|
|
2012-05-05 00:06:24 +02:00
|
|
|
try:
|
|
|
|
p = subprocess.Popen(CC.split() + ['-dM', '-E', '-'],
|
|
|
|
stdin=subprocess.PIPE,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE)
|
|
|
|
except OSError:
|
|
|
|
print '''Node.js configure error: No acceptable C compiler found!
|
|
|
|
|
|
|
|
Please make sure you have a C compiler installed on your system and/or
|
|
|
|
consider adjusting the CC environment variable if you installed
|
|
|
|
it in a non-standard prefix.
|
|
|
|
'''
|
|
|
|
sys.exit()
|
|
|
|
|
2012-02-20 21:27:07 +01:00
|
|
|
p.stdin.write('\n')
|
|
|
|
out = p.communicate()[0]
|
|
|
|
|
|
|
|
out = str(out).split('\n')
|
|
|
|
|
|
|
|
k = {}
|
|
|
|
for line in out:
|
|
|
|
import shlex
|
|
|
|
lst = shlex.split(line)
|
|
|
|
if len(lst) > 2:
|
|
|
|
key = lst[1]
|
|
|
|
val = lst[2]
|
|
|
|
k[key] = val
|
|
|
|
|
|
|
|
matchup = {
|
|
|
|
'__x86_64__' : 'x64',
|
|
|
|
'__i386__' : 'ia32',
|
|
|
|
'__arm__' : 'arm',
|
2012-02-13 14:28:43 +01:00
|
|
|
}
|
|
|
|
|
2012-02-20 21:27:07 +01:00
|
|
|
rtn = 'ia32' # default
|
|
|
|
|
|
|
|
for i in matchup:
|
|
|
|
if i in k and k[i] != '0':
|
|
|
|
rtn = matchup[i]
|
|
|
|
break
|
2012-02-13 14:28:43 +01:00
|
|
|
|
2012-02-20 21:27:07 +01:00
|
|
|
return rtn
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
|
2012-03-15 23:17:25 +01:00
|
|
|
def host_arch_win():
|
|
|
|
"""Host architecture check using environ vars (better way to do this?)"""
|
|
|
|
|
|
|
|
arch = os.environ.get('PROCESSOR_ARCHITECTURE', 'x86')
|
|
|
|
|
|
|
|
matchup = {
|
|
|
|
'AMD64' : 'x64',
|
|
|
|
'x86' : 'ia32',
|
|
|
|
'arm' : 'arm',
|
|
|
|
}
|
|
|
|
|
|
|
|
return matchup.get(arch, 'ia32')
|
|
|
|
|
|
|
|
|
|
|
|
def host_arch():
|
|
|
|
"""Host architecture. One of arm, ia32 or x64."""
|
|
|
|
if os.name == 'nt':
|
|
|
|
arch = host_arch_win()
|
|
|
|
else:
|
|
|
|
arch = host_arch_cc()
|
|
|
|
return arch
|
|
|
|
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
def target_arch():
|
|
|
|
return host_arch()
|
|
|
|
|
2012-05-01 12:33:36 +02:00
|
|
|
def cc_version():
|
2012-03-02 02:14:27 +01:00
|
|
|
try:
|
2012-03-05 16:55:24 +01:00
|
|
|
proc = subprocess.Popen([CC, '-v'], stderr=subprocess.PIPE)
|
2012-03-02 02:14:27 +01:00
|
|
|
except OSError:
|
|
|
|
return None
|
2012-05-01 12:33:36 +02:00
|
|
|
lines = proc.communicate()[1].split('\n')
|
|
|
|
version_line = None
|
|
|
|
for i, line in enumerate(lines):
|
|
|
|
if 'version' in line:
|
|
|
|
version_line = line
|
|
|
|
if not version_line:
|
|
|
|
return None
|
|
|
|
version = version_line.split("version")[1].strip().split()[0].split(".")
|
|
|
|
if not version:
|
|
|
|
return None
|
|
|
|
return ['LLVM' in version_line] + version
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
def configure_node(o):
|
2012-01-15 16:50:58 +01:00
|
|
|
# TODO add gdb
|
2011-11-15 04:02:44 +01:00
|
|
|
o['variables']['node_prefix'] = options.prefix if options.prefix else ''
|
2011-12-17 09:09:14 +01:00
|
|
|
o['variables']['node_install_npm'] = b(not options.without_npm)
|
2012-01-17 06:48:50 +01:00
|
|
|
o['variables']['node_install_waf'] = b(not options.without_waf)
|
2011-11-15 04:02:44 +01:00
|
|
|
o['variables']['host_arch'] = host_arch()
|
2012-01-15 16:50:58 +01:00
|
|
|
o['variables']['target_arch'] = options.dest_cpu or target_arch()
|
2012-01-18 10:37:02 +01:00
|
|
|
o['default_configuration'] = 'Debug' if options.debug else 'Release'
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2012-03-02 02:14:27 +01:00
|
|
|
# turn off strict aliasing if gcc < 4.6.0 unless it's llvm-gcc
|
|
|
|
# see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45883
|
|
|
|
# see http://code.google.com/p/v8/issues/detail?id=884
|
2012-03-05 16:55:24 +01:00
|
|
|
o['variables']['strict_aliasing'] = b(
|
2012-05-01 12:33:36 +02:00
|
|
|
'clang' in CC or cc_version() >= [False, 4, 6, 0])
|
2012-03-02 02:14:27 +01:00
|
|
|
|
2012-03-05 17:01:59 +01:00
|
|
|
# clang has always supported -fvisibility=hidden, right?
|
2012-05-01 12:33:36 +02:00
|
|
|
if 'clang' not in CC and cc_version() < [False, 4, 0, 0]:
|
2012-03-05 17:01:59 +01:00
|
|
|
o['variables']['visibility'] = ''
|
2012-03-02 02:14:27 +01:00
|
|
|
|
2012-03-28 19:26:10 +02:00
|
|
|
# By default, enable DTrace on SunOS systems. Don't allow it on other
|
|
|
|
# systems, since it won't work. (The MacOS build process is different than
|
|
|
|
# SunOS, and we haven't implemented it.)
|
|
|
|
if sys.platform.startswith('sunos'):
|
|
|
|
o['variables']['node_use_dtrace'] = b(not options.without_dtrace);
|
2012-05-16 23:49:51 +02:00
|
|
|
# Strict aliasing causes problems with the V8 snapshots on SunOS
|
|
|
|
o['variables']['strict_aliasing'] = b(False);
|
2012-03-28 19:26:10 +02:00
|
|
|
elif b(options.with_dtrace) == 'true':
|
|
|
|
raise Exception('DTrace is currently only supported on SunOS systems.')
|
|
|
|
else:
|
|
|
|
o['variables']['node_use_dtrace'] = 'false'
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
def configure_libz(o):
|
2012-02-27 00:02:21 +01:00
|
|
|
o['variables']['node_shared_zlib'] = b(options.shared_zlib)
|
|
|
|
|
|
|
|
# assume shared_zlib if one of these is set?
|
|
|
|
if options.shared_zlib_libpath:
|
|
|
|
o['libraries'] += ['-L%s' % options.shared_zlib_libpath]
|
|
|
|
if options.shared_zlib_libname:
|
|
|
|
o['libraries'] += ['-l%s' % options.shared_zlib_libname]
|
|
|
|
elif options.shared_zlib:
|
|
|
|
o['libraries'] += ['-lz']
|
|
|
|
if options.shared_zlib_includes:
|
|
|
|
o['include_dirs'] += [options.shared_zlib_includes]
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
def configure_v8(o):
|
2011-11-29 16:27:52 +01:00
|
|
|
o['variables']['v8_use_snapshot'] = b(not options.without_snapshot)
|
|
|
|
o['variables']['node_shared_v8'] = b(options.shared_v8)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
# assume shared_v8 if one of these is set?
|
|
|
|
if options.shared_v8_libpath:
|
|
|
|
o['libraries'] += ['-L%s' % options.shared_v8_libpath]
|
|
|
|
if options.shared_v8_libname:
|
|
|
|
o['libraries'] += ['-l%s' % options.shared_v8_libname]
|
2012-02-23 23:52:18 +01:00
|
|
|
elif options.shared_v8:
|
|
|
|
o['libraries'] += ['-lv8']
|
2011-11-15 04:02:44 +01:00
|
|
|
if options.shared_v8_includes:
|
|
|
|
o['include_dirs'] += [options.shared_v8_includes]
|
2012-02-23 23:52:18 +01:00
|
|
|
o['variables']['node_shared_v8_includes'] = options.shared_v8_includes
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
def configure_openssl(o):
|
2011-11-29 16:27:52 +01:00
|
|
|
o['variables']['node_use_openssl'] = b(not options.without_ssl)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
if options.without_ssl:
|
|
|
|
return
|
|
|
|
|
|
|
|
if options.no_ssl2:
|
|
|
|
o['defines'] += ['OPENSSL_NO_SSL2=1']
|
|
|
|
|
2011-12-17 00:00:23 +01:00
|
|
|
if not options.openssl_use_sys:
|
|
|
|
o['variables']['node_use_system_openssl'] = b(False)
|
2011-11-15 04:02:44 +01:00
|
|
|
else:
|
2011-12-17 00:00:23 +01:00
|
|
|
out = pkg_config('openssl')
|
|
|
|
(libs, cflags) = out if out else ('', '')
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2011-12-17 00:00:23 +01:00
|
|
|
if options.openssl_libpath:
|
|
|
|
o['libraries'] += ['-L%s' % options.openssl_libpath, '-lssl', '-lcrypto']
|
|
|
|
else:
|
|
|
|
o['libraries'] += libs.split()
|
|
|
|
|
|
|
|
if options.openssl_includes:
|
|
|
|
o['include_dirs'] += [options.openssl_includes]
|
|
|
|
else:
|
|
|
|
o['cflags'] += cflags.split()
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2011-12-17 00:00:23 +01:00
|
|
|
o['variables']['node_use_system_openssl'] = b(
|
|
|
|
libs or cflags or options.openssl_libpath or options.openssl_includes)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
output = {
|
|
|
|
'variables': {},
|
|
|
|
'include_dirs': [],
|
|
|
|
'libraries': [],
|
|
|
|
'defines': [],
|
|
|
|
'cflags': [],
|
|
|
|
}
|
|
|
|
|
|
|
|
configure_node(output)
|
|
|
|
configure_libz(output)
|
|
|
|
configure_v8(output)
|
|
|
|
configure_openssl(output)
|
|
|
|
|
|
|
|
# variables should be a root level element,
|
|
|
|
# move everything else to target_defaults
|
|
|
|
variables = output['variables']
|
|
|
|
del output['variables']
|
|
|
|
output = {
|
|
|
|
'variables': variables,
|
|
|
|
'target_defaults': output
|
|
|
|
}
|
2011-12-23 23:24:50 +01:00
|
|
|
pprint.pprint(output, indent=2)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2012-01-17 23:02:15 +01:00
|
|
|
def write(filename, data):
|
|
|
|
filename = os.path.join(root_dir, filename)
|
|
|
|
print "creating ", filename
|
2012-04-11 20:16:11 +02:00
|
|
|
f = open(filename, 'w+')
|
|
|
|
f.write(data)
|
2012-01-17 23:02:15 +01:00
|
|
|
|
|
|
|
write('config.gypi', "# Do not edit. Generated by the configure script.\n" +
|
2012-04-11 20:16:47 +02:00
|
|
|
pprint.pformat(output, indent=2) + "\n")
|
2012-01-17 23:02:15 +01:00
|
|
|
|
|
|
|
write('config.mk', "# Do not edit. Generated by the configure script.\n" +
|
|
|
|
("BUILDTYPE=%s\n" % ('Debug' if options.debug else 'Release')))
|
2010-11-02 00:03:32 +01:00
|
|
|
|
2012-03-15 23:17:25 +01:00
|
|
|
if os.name == 'nt':
|
|
|
|
subprocess.call(['python', 'tools/gyp_node', '-f', 'msvs',
|
|
|
|
'-G', 'msvs_version=2010'])
|
|
|
|
else:
|
|
|
|
subprocess.call(['tools/gyp_node', '-f', 'make'])
|