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
|
2012-09-15 03:06:25 +02:00
|
|
|
import shlex
|
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__)
|
2013-05-21 18:26:42 +02:00
|
|
|
sys.path.insert(0, os.path.join(root_dir, 'tools', 'gyp', 'pylib'))
|
|
|
|
from gyp.common import GetFlavor
|
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
|
|
|
|
2013-08-10 13:34:57 +02:00
|
|
|
# Options should be in alphabetical order but keep --prefix at the top,
|
|
|
|
# that's arguably the one people will be looking for most.
|
|
|
|
parser.add_option('--prefix',
|
|
|
|
action='store',
|
|
|
|
dest='prefix',
|
|
|
|
help='select the install prefix (defaults to /usr/local)')
|
|
|
|
|
|
|
|
parser.add_option('--debug',
|
|
|
|
action='store_true',
|
|
|
|
dest='debug',
|
|
|
|
help='also build debug build')
|
|
|
|
|
|
|
|
parser.add_option('--dest-cpu',
|
|
|
|
action='store',
|
|
|
|
dest='dest_cpu',
|
|
|
|
help='CPU architecture to build for. Valid values are: arm, ia32, x64')
|
|
|
|
|
|
|
|
parser.add_option('--dest-os',
|
|
|
|
action='store',
|
|
|
|
dest='dest_os',
|
|
|
|
help='operating system to build for. Valid values are: '
|
|
|
|
'win, mac, solaris, freebsd, openbsd, linux, android')
|
|
|
|
|
|
|
|
parser.add_option('--gdb',
|
|
|
|
action='store_true',
|
|
|
|
dest='gdb',
|
|
|
|
help='add gdb support')
|
|
|
|
|
|
|
|
parser.add_option('--ninja',
|
|
|
|
action='store_true',
|
|
|
|
dest='use_ninja',
|
|
|
|
help='generate files for the ninja build system')
|
|
|
|
|
|
|
|
parser.add_option('--no-ifaddrs',
|
|
|
|
action='store_true',
|
|
|
|
dest='no_ifaddrs',
|
|
|
|
help='use on deprecated SunOS systems that do not support ifaddrs.h')
|
|
|
|
|
2012-06-30 04:27:29 +02:00
|
|
|
# deprecated
|
2013-08-10 13:34:57 +02:00
|
|
|
parser.add_option('--openssl-includes',
|
|
|
|
action='store',
|
|
|
|
dest='shared_openssl_includes',
|
2012-06-30 04:27:29 +02:00
|
|
|
help=optparse.SUPPRESS_HELP)
|
2011-12-17 00:00:23 +01:00
|
|
|
|
2012-06-30 04:27:29 +02:00
|
|
|
# deprecated
|
2013-08-10 13:34:57 +02:00
|
|
|
parser.add_option('--openssl-libpath',
|
|
|
|
action='store',
|
|
|
|
dest='shared_openssl_libpath',
|
2012-06-30 04:27:29 +02:00
|
|
|
help=optparse.SUPPRESS_HELP)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2012-06-30 04:27:29 +02:00
|
|
|
# deprecated
|
2013-08-10 13:34:57 +02:00
|
|
|
parser.add_option('--openssl-use-sys',
|
|
|
|
action='store_true',
|
|
|
|
dest='shared_openssl',
|
2012-06-30 04:27:29 +02:00
|
|
|
help=optparse.SUPPRESS_HELP)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2013-08-10 13:34:57 +02:00
|
|
|
parser.add_option('--shared-cares',
|
|
|
|
action='store_true',
|
|
|
|
dest='shared_cares',
|
|
|
|
help='link to a shared cares DLL instead of static linking')
|
|
|
|
|
|
|
|
parser.add_option('--shared-cares-includes',
|
|
|
|
action='store',
|
|
|
|
dest='shared_cares_includes',
|
|
|
|
help='directory containing cares header files')
|
|
|
|
|
|
|
|
parser.add_option('--shared-cares-libname',
|
|
|
|
action='store',
|
|
|
|
dest='shared_cares_libname',
|
|
|
|
help='alternative lib name to link to (default: \'cares\')')
|
|
|
|
|
|
|
|
parser.add_option('--shared-cares-libpath',
|
|
|
|
action='store',
|
|
|
|
dest='shared_cares_libpath',
|
|
|
|
help='a directory to search for the shared cares DLL')
|
|
|
|
|
|
|
|
parser.add_option('--shared-http-parser',
|
|
|
|
action='store_true',
|
|
|
|
dest='shared_http_parser',
|
|
|
|
help='link to a shared http_parser DLL instead of static linking')
|
|
|
|
|
|
|
|
parser.add_option('--shared-http-parser-includes',
|
|
|
|
action='store',
|
|
|
|
dest='shared_http_parser_includes',
|
|
|
|
help='directory containing http_parser header files')
|
|
|
|
|
|
|
|
parser.add_option('--shared-http-parser-libname',
|
|
|
|
action='store',
|
|
|
|
dest='shared_http_parser_libname',
|
|
|
|
help='alternative lib name to link to (default: \'http_parser\')')
|
|
|
|
|
|
|
|
parser.add_option('--shared-http-parser-libpath',
|
|
|
|
action='store',
|
|
|
|
dest='shared_http_parser_libpath',
|
|
|
|
help='a directory to search for the shared http_parser DLL')
|
|
|
|
|
|
|
|
parser.add_option('--shared-libuv',
|
|
|
|
action='store_true',
|
|
|
|
dest='shared_libuv',
|
|
|
|
help='link to a shared libuv DLL instead of static linking')
|
|
|
|
|
|
|
|
parser.add_option('--shared-libuv-includes',
|
|
|
|
action='store',
|
|
|
|
dest='shared_libuv_includes',
|
|
|
|
help='directory containing libuv header files')
|
|
|
|
|
|
|
|
parser.add_option('--shared-libuv-libname',
|
|
|
|
action='store',
|
|
|
|
dest='shared_libuv_libname',
|
|
|
|
help='alternative lib name to link to (default: \'uv\')')
|
|
|
|
|
|
|
|
parser.add_option('--shared-libuv-libpath',
|
|
|
|
action='store',
|
|
|
|
dest='shared_libuv_libpath',
|
|
|
|
help='a directory to search for the shared libuv DLL')
|
|
|
|
|
|
|
|
parser.add_option('--shared-openssl',
|
|
|
|
action='store_true',
|
|
|
|
dest='shared_openssl',
|
|
|
|
help='link to a shared OpenSSl DLL instead of static linking')
|
|
|
|
|
|
|
|
parser.add_option('--shared-openssl-includes',
|
|
|
|
action='store',
|
|
|
|
dest='shared_openssl_includes',
|
|
|
|
help='directory containing OpenSSL header files')
|
|
|
|
|
|
|
|
parser.add_option('--shared-openssl-libname',
|
|
|
|
action='store',
|
|
|
|
dest='shared_openssl_libname',
|
|
|
|
help='alternative lib name to link to (default: \'crypto,ssl\')')
|
|
|
|
|
|
|
|
parser.add_option('--shared-openssl-libpath',
|
|
|
|
action='store',
|
|
|
|
dest='shared_openssl_libpath',
|
|
|
|
help='a directory to search for the shared OpenSSL DLLs')
|
|
|
|
|
|
|
|
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-libname',
|
|
|
|
action='store',
|
|
|
|
dest='shared_v8_libname',
|
|
|
|
help='alternative lib name to link to (default: \'v8\')')
|
|
|
|
|
|
|
|
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-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-libname',
|
|
|
|
action='store',
|
|
|
|
dest='shared_zlib_libname',
|
|
|
|
help='alternative lib name to link to (default: \'z\')')
|
|
|
|
|
|
|
|
parser.add_option('--shared-zlib-libpath',
|
|
|
|
action='store',
|
|
|
|
dest='shared_zlib_libpath',
|
|
|
|
help='a directory to search for the shared zlib DLL')
|
|
|
|
|
2012-11-01 01:36:41 +01:00
|
|
|
# TODO document when we've decided on what the tracing API and its options will
|
|
|
|
# look like
|
2013-08-10 13:34:57 +02:00
|
|
|
parser.add_option('--systemtap-includes',
|
|
|
|
action='store',
|
|
|
|
dest='systemtap_includes',
|
2012-11-01 01:36:41 +01:00
|
|
|
help=optparse.SUPPRESS_HELP)
|
|
|
|
|
2013-08-10 13:34:57 +02:00
|
|
|
parser.add_option('--tag',
|
|
|
|
action='store',
|
|
|
|
dest='tag',
|
|
|
|
help='custom build tag')
|
|
|
|
|
|
|
|
parser.add_option('--with-arm-float-abi',
|
|
|
|
action='store',
|
|
|
|
dest='arm_float_abi',
|
|
|
|
help='specifies which floating-point ABI to use. Valid values are: '
|
|
|
|
'soft, softfp, hard')
|
|
|
|
|
|
|
|
parser.add_option('--with-dtrace',
|
|
|
|
action='store_true',
|
|
|
|
dest='with_dtrace',
|
|
|
|
help='build with DTrace (default is true on sunos)')
|
|
|
|
|
|
|
|
parser.add_option('--with-etw',
|
|
|
|
action='store_true',
|
|
|
|
dest='with_etw',
|
|
|
|
help='build with ETW (default is true on Windows)')
|
|
|
|
|
2013-11-21 17:13:58 +01:00
|
|
|
parser.add_option('--with-icu-path',
|
|
|
|
action='store',
|
|
|
|
dest='with_icu_path',
|
|
|
|
help='Path to icu.gyp (ICU i18n, Chromium version only.)')
|
|
|
|
|
2013-08-10 13:34:57 +02:00
|
|
|
parser.add_option('--with-perfctr',
|
|
|
|
action='store_true',
|
|
|
|
dest='with_perfctr',
|
|
|
|
help='build with performance counters (default is true on Windows)')
|
|
|
|
|
2013-08-10 15:40:26 +02:00
|
|
|
parser.add_option('--with-sslv2',
|
|
|
|
action='store_true',
|
|
|
|
dest='with_sslv2',
|
|
|
|
help='enable SSL v2')
|
|
|
|
|
2013-08-10 13:34:57 +02:00
|
|
|
parser.add_option('--without-dtrace',
|
|
|
|
action='store_true',
|
|
|
|
dest='without_dtrace',
|
|
|
|
help='build without DTrace')
|
|
|
|
|
|
|
|
parser.add_option('--without-etw',
|
|
|
|
action='store_true',
|
|
|
|
dest='without_etw',
|
|
|
|
help='build without ETW')
|
|
|
|
|
|
|
|
parser.add_option('--without-npm',
|
|
|
|
action='store_true',
|
|
|
|
dest='without_npm',
|
|
|
|
help='don\'t install the bundled npm package manager')
|
|
|
|
|
|
|
|
parser.add_option('--without-perfctr',
|
|
|
|
action='store_true',
|
|
|
|
dest='without_perfctr',
|
|
|
|
help='build without performance counters')
|
|
|
|
|
|
|
|
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('--without-ssl',
|
|
|
|
action='store_true',
|
|
|
|
dest='without_ssl',
|
|
|
|
help='build without SSL')
|
|
|
|
|
|
|
|
parser.add_option('--xcode',
|
|
|
|
action='store_true',
|
|
|
|
dest='use_xcode',
|
|
|
|
help='generate build files for use with xcode')
|
2012-12-21 02:56:47 +01:00
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
(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)
|
|
|
|
|
|
|
|
|
2013-06-25 12:47:24 +02:00
|
|
|
def cc_macros():
|
|
|
|
"""Checks predefined macros using the CC command."""
|
2012-02-20 21:27:07 +01:00
|
|
|
|
2012-05-05 00:06:24 +02:00
|
|
|
try:
|
2013-06-25 12:47:24 +02:00
|
|
|
p = subprocess.Popen(shlex.split(CC) + ['-dM', '-E', '-'],
|
2012-05-05 00:06:24 +02:00
|
|
|
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:
|
|
|
|
lst = shlex.split(line)
|
|
|
|
if len(lst) > 2:
|
|
|
|
key = lst[1]
|
|
|
|
val = lst[2]
|
|
|
|
k[key] = val
|
2012-06-23 03:39:10 +02:00
|
|
|
return k
|
|
|
|
|
|
|
|
|
|
|
|
def is_arch_armv7():
|
|
|
|
"""Check for ARMv7 instructions"""
|
|
|
|
cc_macros_cache = cc_macros()
|
|
|
|
return ('__ARM_ARCH_7__' in cc_macros_cache or
|
|
|
|
'__ARM_ARCH_7A__' in cc_macros_cache or
|
|
|
|
'__ARM_ARCH_7R__' in cc_macros_cache or
|
|
|
|
'__ARM_ARCH_7M__' in cc_macros_cache)
|
|
|
|
|
|
|
|
|
2013-01-11 02:13:59 +01:00
|
|
|
def is_arm_neon():
|
|
|
|
"""Check for ARM NEON support"""
|
|
|
|
return '__ARM_NEON__' in cc_macros()
|
|
|
|
|
|
|
|
|
2013-04-19 14:54:21 +02:00
|
|
|
def is_arm_hard_float_abi():
|
2012-06-23 03:39:10 +02:00
|
|
|
"""Check for hardfloat or softfloat eabi on ARM"""
|
|
|
|
# GCC versions 4.6 and above define __ARM_PCS or __ARM_PCS_VFP to specify
|
|
|
|
# the Floating Point ABI used (PCS stands for Procedure Call Standard).
|
|
|
|
# We use these as well as a couple of other defines to statically determine
|
|
|
|
# what FP ABI used.
|
|
|
|
# GCC versions 4.4 and below don't support hard-fp.
|
|
|
|
# GCC versions 4.5 may support hard-fp without defining __ARM_PCS or
|
|
|
|
# __ARM_PCS_VFP.
|
|
|
|
|
|
|
|
if compiler_version() >= (4, 6, 0):
|
|
|
|
return '__ARM_PCS_VFP' in cc_macros()
|
|
|
|
elif compiler_version() < (4, 5, 0):
|
|
|
|
return False
|
|
|
|
elif '__ARM_PCS_VFP' in cc_macros():
|
|
|
|
return True
|
|
|
|
elif ('__ARM_PCS' in cc_macros() or
|
|
|
|
'__SOFTFP' in cc_macros() or
|
|
|
|
not '__VFP_FP__' in cc_macros()):
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
print '''Node.js configure error: Your version of GCC does not report
|
|
|
|
the Floating-Point ABI to compile for your hardware
|
|
|
|
|
|
|
|
Please manually specify which floating-point ABI to use with the
|
|
|
|
--with-arm-float-abi option.
|
|
|
|
'''
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
|
|
|
|
def host_arch_cc():
|
|
|
|
"""Host architecture check using the CC command."""
|
|
|
|
|
2013-06-25 12:47:24 +02:00
|
|
|
k = cc_macros()
|
2012-02-20 21:27:07 +01:00
|
|
|
|
|
|
|
matchup = {
|
|
|
|
'__x86_64__' : 'x64',
|
|
|
|
'__i386__' : 'ia32',
|
|
|
|
'__arm__' : 'arm',
|
2013-06-12 17:47:10 +02:00
|
|
|
'__mips__' : 'mips',
|
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',
|
2013-06-12 17:47:10 +02:00
|
|
|
'mips' : 'mips',
|
2012-03-15 23:17:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return matchup.get(arch, 'ia32')
|
|
|
|
|
|
|
|
|
2012-06-26 02:54:11 +02:00
|
|
|
def compiler_version():
|
2012-07-07 23:33:54 +02:00
|
|
|
try:
|
2013-08-02 11:50:45 +02:00
|
|
|
proc = subprocess.Popen(shlex.split(CC) + ['--version'],
|
|
|
|
stdout=subprocess.PIPE)
|
2012-07-07 23:33:54 +02:00
|
|
|
except WindowsError:
|
|
|
|
return (0, False)
|
|
|
|
|
2012-07-03 15:14:33 +02:00
|
|
|
is_clang = 'clang' in proc.communicate()[0].split('\n')[0]
|
2012-06-30 17:49:31 +02:00
|
|
|
|
2013-08-02 11:50:45 +02:00
|
|
|
proc = subprocess.Popen(shlex.split(CC) + ['-dumpversion'],
|
|
|
|
stdout=subprocess.PIPE)
|
2012-07-03 15:14:33 +02:00
|
|
|
version = tuple(map(int, proc.communicate()[0].split('.')))
|
2012-06-30 17:49:31 +02:00
|
|
|
|
|
|
|
return (version, is_clang)
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2012-09-19 14:37:08 +02:00
|
|
|
def configure_arm(o):
|
|
|
|
if options.arm_float_abi:
|
2013-04-19 14:54:21 +02:00
|
|
|
arm_float_abi = options.arm_float_abi
|
2012-09-19 14:37:08 +02:00
|
|
|
else:
|
2013-04-19 14:54:21 +02:00
|
|
|
arm_float_abi = 'hard' if is_arm_hard_float_abi() else 'default'
|
|
|
|
o['variables']['armv7'] = int(is_arch_armv7())
|
|
|
|
o['variables']['arm_fpu'] = 'vfpv3' # V8 3.18 no longer supports VFP2.
|
2013-01-11 02:13:59 +01:00
|
|
|
o['variables']['arm_neon'] = int(is_arm_neon())
|
2013-04-19 14:54:21 +02:00
|
|
|
o['variables']['arm_thumb'] = 0 # -marm
|
|
|
|
o['variables']['arm_float_abi'] = arm_float_abi
|
2012-09-19 14:37:08 +02:00
|
|
|
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
def configure_node(o):
|
2013-05-08 14:10:07 +02:00
|
|
|
if options.dest_os == 'android':
|
2013-08-02 11:50:45 +02:00
|
|
|
o['variables']['OS'] = 'android'
|
2012-06-26 16:34:07 +02:00
|
|
|
o['variables']['node_prefix'] = os.path.expanduser(options.prefix or '')
|
2011-12-17 09:09:14 +01:00
|
|
|
o['variables']['node_install_npm'] = b(not options.without_npm)
|
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-07-12 16:29:43 +02:00
|
|
|
host_arch = host_arch_win() if os.name == 'nt' else host_arch_cc()
|
|
|
|
target_arch = options.dest_cpu or host_arch
|
|
|
|
o['variables']['host_arch'] = host_arch
|
|
|
|
o['variables']['target_arch'] = target_arch
|
|
|
|
|
|
|
|
if target_arch == 'arm':
|
2012-09-19 14:37:08 +02:00
|
|
|
configure_arm(o)
|
2012-06-26 02:54:11 +02:00
|
|
|
|
2012-07-12 16:29:43 +02:00
|
|
|
cc_version, is_clang = compiler_version()
|
2012-08-13 15:04:03 +02:00
|
|
|
o['variables']['clang'] = 1 if is_clang else 0
|
|
|
|
|
2012-08-15 20:28:52 +02:00
|
|
|
if not is_clang and cc_version != 0:
|
2012-08-13 15:04:03 +02:00
|
|
|
o['variables']['gcc_version'] = 10 * cc_version[0] + cc_version[1]
|
|
|
|
|
|
|
|
# clang has always supported -fvisibility=hidden, right?
|
2012-06-26 02:54:11 +02:00
|
|
|
if not is_clang and cc_version < (4,0,0):
|
2012-03-05 17:01:59 +01:00
|
|
|
o['variables']['visibility'] = ''
|
2012-03-02 02:14:27 +01:00
|
|
|
|
2013-10-28 20:18:59 +01:00
|
|
|
if flavor in ('solaris', 'mac', 'linux'):
|
|
|
|
use_dtrace = not options.without_dtrace
|
|
|
|
# Don't enable by default on linux, it needs the sdt-devel package.
|
|
|
|
if flavor == 'linux':
|
|
|
|
if options.systemtap_includes:
|
|
|
|
o['include_dirs'] += [options.systemtap_includes]
|
|
|
|
use_dtrace = options.with_dtrace
|
|
|
|
o['variables']['node_use_dtrace'] = b(use_dtrace)
|
|
|
|
o['variables']['uv_use_dtrace'] = b(use_dtrace)
|
2013-04-17 01:18:07 +02:00
|
|
|
o['variables']['uv_parent_path'] = '/deps/uv/'
|
2012-11-21 00:27:22 +01:00
|
|
|
elif options.with_dtrace:
|
2012-10-10 00:09:07 +02:00
|
|
|
raise Exception(
|
2013-05-21 18:26:42 +02:00
|
|
|
'DTrace is currently only supported on SunOS, MacOS or Linux systems.')
|
2012-03-28 19:26:10 +02:00
|
|
|
else:
|
|
|
|
o['variables']['node_use_dtrace'] = 'false'
|
|
|
|
|
2013-07-17 22:46:25 +02:00
|
|
|
# if we're on illumos based systems wrap the helper library into the
|
|
|
|
# executable
|
|
|
|
if flavor == 'solaris':
|
|
|
|
o['variables']['node_use_mdb'] = 'true'
|
|
|
|
else:
|
|
|
|
o['variables']['node_use_mdb'] = 'false'
|
|
|
|
|
2012-06-30 04:27:29 +02:00
|
|
|
if options.no_ifaddrs:
|
|
|
|
o['defines'] += ['SUNOS_NO_IFADDRS']
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2012-06-12 01:23:17 +02:00
|
|
|
# By default, enable ETW on Windows.
|
2013-05-21 18:26:42 +02:00
|
|
|
if flavor == 'win':
|
2013-08-02 11:50:45 +02:00
|
|
|
o['variables']['node_use_etw'] = b(not options.without_etw)
|
2012-11-21 00:27:22 +01:00
|
|
|
elif options.with_etw:
|
2012-06-12 01:23:17 +02:00
|
|
|
raise Exception('ETW is only supported on Windows.')
|
|
|
|
else:
|
|
|
|
o['variables']['node_use_etw'] = 'false'
|
|
|
|
|
2012-11-21 00:27:22 +01:00
|
|
|
# By default, enable Performance counters on Windows.
|
2013-05-21 18:26:42 +02:00
|
|
|
if flavor == 'win':
|
2013-08-02 11:50:45 +02:00
|
|
|
o['variables']['node_use_perfctr'] = b(not options.without_perfctr)
|
2012-11-21 00:27:22 +01:00
|
|
|
elif options.with_perfctr:
|
|
|
|
raise Exception('Performance counter is only supported on Windows.')
|
|
|
|
else:
|
|
|
|
o['variables']['node_use_perfctr'] = 'false'
|
|
|
|
|
2012-12-27 05:35:00 +01:00
|
|
|
if options.tag:
|
|
|
|
o['variables']['node_tag'] = '-' + options.tag
|
|
|
|
else:
|
|
|
|
o['variables']['node_tag'] = ''
|
2012-12-21 02:56:47 +01:00
|
|
|
|
2012-06-12 01:23:17 +02:00
|
|
|
|
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
|
|
|
|
|
|
|
|
2012-10-23 15:01:26 +02:00
|
|
|
def configure_http_parser(o):
|
|
|
|
o['variables']['node_shared_http_parser'] = b(options.shared_http_parser)
|
|
|
|
|
|
|
|
# assume shared http_parser if one of these is set?
|
|
|
|
if options.shared_http_parser_libpath:
|
|
|
|
o['libraries'] += ['-L%s' % options.shared_http_parser_libpath]
|
|
|
|
if options.shared_http_parser_libname:
|
|
|
|
o['libraries'] += ['-l%s' % options.shared_http_parser_libname]
|
|
|
|
elif options.shared_http_parser:
|
|
|
|
o['libraries'] += ['-lhttp_parser']
|
|
|
|
if options.shared_http_parser_includes:
|
|
|
|
o['include_dirs'] += [options.shared_http_parser_includes]
|
|
|
|
|
|
|
|
|
2012-10-23 16:27:19 +02:00
|
|
|
def configure_cares(o):
|
|
|
|
o['variables']['node_shared_cares'] = b(options.shared_cares)
|
|
|
|
|
|
|
|
# assume shared cares if one of these is set?
|
|
|
|
if options.shared_cares_libpath:
|
|
|
|
o['libraries'] += ['-L%s' % options.shared_cares_libpath]
|
|
|
|
if options.shared_cares_libname:
|
|
|
|
o['libraries'] += ['-l%s' % options.shared_cares_libname]
|
|
|
|
elif options.shared_cares:
|
|
|
|
o['libraries'] += ['-lcares']
|
|
|
|
if options.shared_cares_includes:
|
|
|
|
o['include_dirs'] += [options.shared_cares_includes]
|
|
|
|
|
|
|
|
|
2012-10-24 01:54:22 +02:00
|
|
|
def configure_libuv(o):
|
|
|
|
o['variables']['node_shared_libuv'] = b(options.shared_libuv)
|
|
|
|
|
|
|
|
# assume shared libuv if one of these is set?
|
|
|
|
if options.shared_libuv_libpath:
|
|
|
|
o['libraries'] += ['-L%s' % options.shared_libuv_libpath]
|
|
|
|
if options.shared_libuv_libname:
|
|
|
|
o['libraries'] += ['-l%s' % options.shared_libuv_libname]
|
|
|
|
elif options.shared_libuv:
|
|
|
|
o['libraries'] += ['-luv']
|
|
|
|
if options.shared_libuv_includes:
|
|
|
|
o['include_dirs'] += [options.shared_libuv_includes]
|
|
|
|
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
def configure_v8(o):
|
2011-11-29 16:27:52 +01:00
|
|
|
o['variables']['node_shared_v8'] = b(options.shared_v8)
|
2013-11-10 02:02:27 +01:00
|
|
|
o['variables']['v8_enable_gdbjit'] = 1 if options.gdb else 0
|
|
|
|
o['variables']['v8_no_strict_aliasing'] = 1 # Work around compiler bugs.
|
|
|
|
o['variables']['v8_optimized_debug'] = 0 # Compile with -O0 in debug builds.
|
|
|
|
o['variables']['v8_random_seed'] = 0 # Use a random seed for hash tables.
|
|
|
|
o['variables']['v8_use_snapshot'] = b(not options.without_snapshot)
|
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]
|
|
|
|
|
|
|
|
|
|
|
|
def configure_openssl(o):
|
2011-11-29 16:27:52 +01:00
|
|
|
o['variables']['node_use_openssl'] = b(not options.without_ssl)
|
2012-06-30 04:27:29 +02:00
|
|
|
o['variables']['node_shared_openssl'] = b(options.shared_openssl)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
if options.without_ssl:
|
|
|
|
return
|
|
|
|
|
2013-08-10 15:40:26 +02:00
|
|
|
# OpenSSL uses `#ifndef OPENSSL_NO_SSL2` checks so only define the
|
|
|
|
# macro when we want to _disable_ SSL2.
|
|
|
|
if not options.with_sslv2:
|
2011-11-15 04:02:44 +01:00
|
|
|
o['defines'] += ['OPENSSL_NO_SSL2=1']
|
|
|
|
|
2012-06-30 04:27:29 +02:00
|
|
|
if options.shared_openssl:
|
|
|
|
(libs, cflags) = pkg_config('openssl') or ('-lssl -lcrypto', '')
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2012-06-30 04:27:29 +02:00
|
|
|
if options.shared_openssl_libpath:
|
|
|
|
o['libraries'] += ['-L%s' % options.shared_openssl_libpath]
|
|
|
|
|
|
|
|
if options.shared_openssl_libname:
|
|
|
|
libnames = options.shared_openssl_libname.split(',')
|
|
|
|
o['libraries'] += ['-l%s' % s for s in libnames]
|
2011-12-17 00:00:23 +01:00
|
|
|
else:
|
|
|
|
o['libraries'] += libs.split()
|
|
|
|
|
2012-06-30 04:27:29 +02:00
|
|
|
if options.shared_openssl_includes:
|
|
|
|
o['include_dirs'] += [options.shared_openssl_includes]
|
2011-12-17 00:00:23 +01:00
|
|
|
else:
|
|
|
|
o['cflags'] += cflags.split()
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
|
2012-12-21 09:06:21 +01:00
|
|
|
def configure_winsdk(o):
|
2013-05-21 18:26:42 +02:00
|
|
|
if flavor != 'win':
|
2012-12-21 09:06:21 +01:00
|
|
|
return
|
|
|
|
|
2013-08-02 11:50:45 +02:00
|
|
|
winsdk_dir = os.environ.get('WindowsSdkDir')
|
2013-01-03 23:36:04 +01:00
|
|
|
|
|
|
|
if winsdk_dir and os.path.isfile(winsdk_dir + '\\bin\\ctrpp.exe'):
|
2013-08-02 11:50:45 +02:00
|
|
|
print('Found ctrpp in WinSDK--will build generated files '
|
|
|
|
'into tools/msvs/genfiles.')
|
2013-01-03 23:36:04 +01:00
|
|
|
o['variables']['node_has_winsdk'] = 'true'
|
2012-12-21 09:06:21 +01:00
|
|
|
return
|
|
|
|
|
2013-08-02 11:50:45 +02:00
|
|
|
print('ctrpp not found in WinSDK path--using pre-gen files '
|
|
|
|
'from tools/msvs/genfiles.')
|
2012-12-21 09:06:21 +01:00
|
|
|
|
|
|
|
|
2013-11-21 17:13:58 +01:00
|
|
|
def configure_icu(o):
|
|
|
|
have_icu_path = bool(options.with_icu_path)
|
|
|
|
o['variables']['v8_enable_i18n_support'] = int(have_icu_path)
|
|
|
|
if have_icu_path:
|
|
|
|
o['variables']['icu_gyp_path'] = options.with_icu_path
|
|
|
|
|
|
|
|
|
2013-05-21 18:26:42 +02:00
|
|
|
# determine the "flavor" (operating system) we're building for,
|
|
|
|
# leveraging gyp's GetFlavor function
|
2013-08-02 11:50:45 +02:00
|
|
|
flavor_params = {}
|
2013-05-21 18:26:42 +02:00
|
|
|
if (options.dest_os):
|
2013-08-02 11:50:45 +02:00
|
|
|
flavor_params['flavor'] = options.dest_os
|
|
|
|
flavor = GetFlavor(flavor_params)
|
2013-05-21 18:26:42 +02:00
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
output = {
|
2012-11-20 17:28:28 +01:00
|
|
|
'variables': { 'python': sys.executable },
|
2011-11-15 04:02:44 +01:00
|
|
|
'include_dirs': [],
|
|
|
|
'libraries': [],
|
|
|
|
'defines': [],
|
|
|
|
'cflags': [],
|
|
|
|
}
|
|
|
|
|
|
|
|
configure_node(output)
|
|
|
|
configure_libz(output)
|
2012-10-23 15:01:26 +02:00
|
|
|
configure_http_parser(output)
|
2012-10-23 16:27:19 +02:00
|
|
|
configure_cares(output)
|
2012-10-24 01:54:22 +02:00
|
|
|
configure_libuv(output)
|
2011-11-15 04:02:44 +01:00
|
|
|
configure_v8(output)
|
|
|
|
configure_openssl(output)
|
2012-12-21 09:06:21 +01:00
|
|
|
configure_winsdk(output)
|
2013-11-21 17:13:58 +01:00
|
|
|
configure_icu(output)
|
2013-05-08 14:10:07 +02:00
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
# 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)
|
2013-08-02 11:50:45 +02:00
|
|
|
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
|
|
|
|
2013-08-02 11:50:45 +02:00
|
|
|
write('config.gypi', '# Do not edit. Generated by the configure script.\n' +
|
|
|
|
pprint.pformat(output, indent=2) + '\n')
|
2012-01-17 23:02:15 +01:00
|
|
|
|
2012-09-04 16:03:01 +02:00
|
|
|
config = {
|
|
|
|
'BUILDTYPE': 'Debug' if options.debug else 'Release',
|
|
|
|
'USE_NINJA': str(int(options.use_ninja or 0)),
|
2012-09-14 20:16:43 +02:00
|
|
|
'USE_XCODE': str(int(options.use_xcode or 0)),
|
2012-11-20 17:28:28 +01:00
|
|
|
'PYTHON': sys.executable,
|
2012-09-04 16:03:01 +02:00
|
|
|
}
|
2013-04-24 19:15:36 +02:00
|
|
|
|
|
|
|
if options.prefix:
|
|
|
|
config['PREFIX'] = options.prefix
|
|
|
|
|
2012-09-04 16:03:01 +02:00
|
|
|
config = '\n'.join(map('='.join, config.iteritems())) + '\n'
|
|
|
|
|
|
|
|
write('config.mk',
|
|
|
|
'# Do not edit. Generated by the configure script.\n' + config)
|
2010-11-02 00:03:32 +01:00
|
|
|
|
2013-12-07 06:00:32 +01:00
|
|
|
gyp_args = [sys.executable, 'tools/gyp_node.py', '--no-parallel']
|
2013-12-07 05:58:00 +01:00
|
|
|
|
2012-09-04 16:03:01 +02:00
|
|
|
if options.use_ninja:
|
2013-12-07 05:58:00 +01:00
|
|
|
gyp_args += ['-f', 'ninja-' + flavor]
|
2012-09-14 20:16:43 +02:00
|
|
|
elif options.use_xcode:
|
2013-12-07 05:58:00 +01:00
|
|
|
gyp_args += ['-f', 'xcode']
|
2013-05-21 18:26:42 +02:00
|
|
|
elif flavor == 'win':
|
2013-12-07 05:58:00 +01:00
|
|
|
gyp_args += ['-f', 'msvs', '-G', 'msvs_version=auto']
|
2012-03-15 23:17:25 +01:00
|
|
|
else:
|
2013-12-07 05:58:00 +01:00
|
|
|
gyp_args += ['-f', 'make-' + flavor]
|
|
|
|
|
|
|
|
gyp_args += args
|
2012-06-28 01:07:42 +02:00
|
|
|
|
2013-12-07 05:58:00 +01:00
|
|
|
subprocess.call(gyp_args)
|