node/deps/uv/gyp_uv.py

95 lines
2.7 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2012-08-13 21:33:04 +08:00
2011-08-04 08:23:38 +08:00
import os
import platform
2011-08-04 08:23:38 +08:00
import sys
2014-08-07 19:03:17 +08:00
try:
import multiprocessing.synchronize
gyp_parallel_support = True
except ImportError:
gyp_parallel_support = False
2012-08-13 21:33:04 +08:00
CC = os.environ.get('CC', 'cc')
2011-08-04 08:23:38 +08:00
script_dir = os.path.dirname(__file__)
uv_root = os.path.normpath(script_dir)
2012-08-13 21:33:04 +08:00
output_dir = os.path.join(os.path.abspath(uv_root), 'out')
2011-08-04 08:23:38 +08:00
sys.path.insert(0, os.path.join(uv_root, 'build', 'gyp', 'pylib'))
2012-04-29 06:22:01 +08:00
try:
import gyp
except ImportError:
print('You need to install gyp in build/gyp first. See the README.')
sys.exit(42)
2011-08-04 08:23:38 +08:00
2012-08-13 21:33:04 +08:00
2013-01-13 08:29:34 +08:00
def host_arch():
machine = platform.machine()
if machine == 'i386': return 'ia32'
if machine == 'AMD64': return 'x64'
2013-01-13 08:29:34 +08:00
if machine == 'x86_64': return 'x64'
if machine.startswith('arm'): return 'arm'
2013-06-27 01:48:10 +08:00
if machine.startswith('mips'): return 'mips'
2013-01-13 08:29:34 +08:00
return machine # Return as-is and hope for the best.
2011-08-04 08:23:38 +08:00
def run_gyp(args):
rc = gyp.main(args)
if rc != 0:
print('Error running GYP')
2011-08-04 08:23:38 +08:00
sys.exit(rc)
2012-08-13 21:33:04 +08:00
2011-08-04 08:23:38 +08:00
if __name__ == '__main__':
args = sys.argv[1:]
2011-08-06 18:38:11 +08:00
# GYP bug.
# On msvs it will crash if it gets an absolute path.
# On Mac/make it will crash if it doesn't get an absolute path.
if sys.platform == 'win32':
args.append(os.path.join(uv_root, 'uv.gyp'))
common_fn = os.path.join(uv_root, 'common.gypi')
options_fn = os.path.join(uv_root, 'options.gypi')
2012-10-07 05:04:30 +08:00
# we force vs 2010 over 2008 which would otherwise be the default for gyp
if not os.environ.get('GYP_MSVS_VERSION'):
os.environ['GYP_MSVS_VERSION'] = '2010'
else:
args.append(os.path.join(os.path.abspath(uv_root), 'uv.gyp'))
common_fn = os.path.join(os.path.abspath(uv_root), 'common.gypi')
options_fn = os.path.join(os.path.abspath(uv_root), 'options.gypi')
if os.path.exists(common_fn):
args.extend(['-I', common_fn])
if os.path.exists(options_fn):
args.extend(['-I', options_fn])
2011-08-06 18:38:11 +08:00
2011-08-04 08:23:38 +08:00
args.append('--depth=' + uv_root)
2011-08-06 18:38:11 +08:00
# There's a bug with windows which doesn't allow this feature.
if sys.platform != 'win32':
2012-09-13 22:18:54 +08:00
if '-f' not in args:
args.extend('-f make'.split())
2013-12-14 02:35:09 +08:00
if 'eclipse' not in args and 'ninja' not in args:
2012-09-13 22:18:54 +08:00
args.extend(['-Goutput_dir=' + output_dir])
args.extend(['--generator-output', output_dir])
2011-08-06 18:38:11 +08:00
2013-01-13 08:29:34 +08:00
if not any(a.startswith('-Dhost_arch=') for a in args):
args.append('-Dhost_arch=%s' % host_arch())
2012-11-17 00:57:15 +08:00
if not any(a.startswith('-Dtarget_arch=') for a in args):
2013-01-13 08:29:34 +08:00
args.append('-Dtarget_arch=%s' % host_arch())
2012-10-07 05:04:30 +08:00
2014-02-27 10:08:30 +08:00
if not any(a.startswith('-Duv_library=') for a in args):
args.append('-Duv_library=static_library')
2012-10-07 05:04:30 +08:00
2014-08-07 19:03:17 +08:00
# Some platforms (OpenBSD for example) don't have multiprocessing.synchronize
# so gyp must be run with --no-parallel
if not gyp_parallel_support:
args.append('--no-parallel')
2011-08-04 08:23:38 +08:00
gyp_args = list(args)
print(gyp_args)
2011-08-04 08:23:38 +08:00
run_gyp(gyp_args)