Sha256: 26911c27e9688d62e8c704e23025095e1c867bd57525419a9bef8711e2548af1

Contents?: true

Size: 1.7 KB

Versions: 7

Compression:

Stored size: 1.7 KB

Contents

#!/usr/bin/env python
import glob
import os
import shlex
import sys

script_dir = os.path.dirname(__file__)
uv_root = os.path.normpath(script_dir)

sys.path.insert(0, os.path.join(uv_root, 'build', 'gyp', 'pylib'))
import gyp

# Directory within which we want all generated files (including Makefiles)
# to be written.
output_dir = os.path.join(os.path.abspath(uv_root), 'out')

def run_gyp(args):
  rc = gyp.main(args)
  if rc != 0:
    print 'Error running GYP'
    sys.exit(rc)

if __name__ == '__main__':
  args = sys.argv[1:]

  # 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')
  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])

  args.append('--depth=' + uv_root)

  # There's a bug with windows which doesn't allow this feature.
  if sys.platform != 'win32':

    # Tell gyp to write the Makefiles into output_dir
    args.extend(['--generator-output', output_dir])

    # Tell make to write its output into the same dir
    args.extend(['-Goutput_dir=' + output_dir])

  args.append('-Dtarget_arch=ia32')
  args.append('-Dcomponent=static_library')
  args.append('-Dlibrary=static_library')
  gyp_args = list(args)
  print gyp_args
  run_gyp(gyp_args)

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
noderb-0.0.12 ext/noderb_extension/libuv/gyp_uv
noderb-0.0.11 ext/noderb_extension/libuv/gyp_uv
noderb-0.0.10 ext/noderb_extension/libuv/gyp_uv
noderb-0.0.9 ext/noderb_extension/libuv/gyp_uv
noderb-0.0.8 ext/noderb_extension/libuv/gyp_uv
noderb-0.0.7 ext/noderb_extension/libuv/gyp_uv
noderb-0.0.6 ext/noderb_extension/libuv/gyp_uv