2011-08-05 22:03:30 +00:00
|
|
|
#!/usr/bin/env python
|
2018-11-19 11:09:40 +00:00
|
|
|
from __future__ import print_function
|
2011-08-05 22:03:30 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2011-08-06 19:20:15 +00:00
|
|
|
script_dir = os.path.dirname(__file__)
|
|
|
|
node_root = os.path.normpath(os.path.join(script_dir, os.pardir))
|
2011-08-05 22:03:30 +00:00
|
|
|
|
2011-08-06 19:20:15 +00:00
|
|
|
sys.path.insert(0, os.path.join(node_root, 'tools', 'gyp', 'pylib'))
|
2011-08-05 22:03:30 +00:00
|
|
|
import gyp
|
|
|
|
|
|
|
|
# Directory within which we want all generated files (including Makefiles)
|
|
|
|
# to be written.
|
|
|
|
output_dir = os.path.join(os.path.abspath(node_root), 'out')
|
|
|
|
|
|
|
|
def run_gyp(args):
|
2011-08-08 19:32:34 +00: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.
|
2017-04-26 13:27:46 +00:00
|
|
|
a_path = node_root if sys.platform == 'win32' else os.path.abspath(node_root)
|
|
|
|
args.append(os.path.join(a_path, 'node.gyp'))
|
|
|
|
common_fn = os.path.join(a_path, 'common.gypi')
|
|
|
|
options_fn = os.path.join(a_path, 'config.gypi')
|
2011-08-08 19:32:34 +00:00
|
|
|
|
2011-08-13 18:17:47 +00:00
|
|
|
if os.path.exists(common_fn):
|
|
|
|
args.extend(['-I', common_fn])
|
|
|
|
|
2011-08-08 15:55:39 +00:00
|
|
|
if os.path.exists(options_fn):
|
|
|
|
args.extend(['-I', options_fn])
|
|
|
|
|
2011-08-05 22:03:30 +00:00
|
|
|
args.append('--depth=' + node_root)
|
|
|
|
|
2011-08-13 18:17:47 +00:00
|
|
|
# There's a bug with windows which doesn't allow this feature.
|
2012-08-22 20:36:04 +00:00
|
|
|
if sys.platform != 'win32' and 'ninja' not in args:
|
2011-08-13 18:17:47 +00:00
|
|
|
# Tell gyp to write the Makefiles into output_dir
|
|
|
|
args.extend(['--generator-output', output_dir])
|
|
|
|
|
2011-08-06 19:20:15 +00:00
|
|
|
# Tell make to write its output into the same dir
|
|
|
|
args.extend(['-Goutput_dir=' + output_dir])
|
2011-08-05 22:03:30 +00:00
|
|
|
|
|
|
|
args.append('-Dcomponent=static_library')
|
|
|
|
args.append('-Dlibrary=static_library')
|
2016-05-09 11:47:09 +00:00
|
|
|
|
2017-04-25 21:36:50 +00:00
|
|
|
rc = gyp.main(args)
|
|
|
|
if rc != 0:
|
2018-11-19 11:09:40 +00:00
|
|
|
print('Error running GYP')
|
2017-04-25 21:36:50 +00:00
|
|
|
sys.exit(rc)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
run_gyp(sys.argv[1:])
|