summaryrefslogtreecommitdiff
path: root/configure-gyp
blob: 0ec745c939037a4302d932db86355ca9c4d8ed29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#!/usr/bin/env python

import optparse
import os
import json
import sys

root_dir = os.path.dirname(__file__)
sys.path.insert(0, os.path.join(root_dir, 'deps', 'v8', 'tools'))
import utils # GuessArchitecture

# parse our options
parser = optparse.OptionParser()

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)")

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')")

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")

parser.add_option("--shared-cares",
    action="store_true",
    dest="shared_cares",
    help="Link to a shared C-Ares DLL instead of static linking")

parser.add_option("--shared-cares-includes",
    action="store",
    dest="shared_cares_includes",
    help="Directory containing C-Ares header files")

parser.add_option("--shared-cares-libpath",
    action="store",
    dest="shared_cares_libpath",
    help="A directory to search for the shared C-Ares DLL")

parser.add_option("--with-dtrace",
    action="store_true",
    dest="with_dtrace",
    help="Build with DTrace (experimental)")

# 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()


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)


def uname(switch):
  f = os.popen('uname %s' % switch)
  s = f.read().strip()
  f.close()
  return s


def host_arch():
  """Host architecture. One of arm, ia32 or x64."""
  arch = uname('-p')

  if arch == 'unknown':
    arch = uname('-m')

  return {
    'arm': 'arm',
    'x86': 'ia32',
    'i386': 'ia32',
    'x86_64': 'x64',
  }.get(arch, 'ia32')


def target_arch():
  # TODO act on options.dest_cpu
  return host_arch()


def configure_node(o):
  # TODO add gdb and dest_cpu
  o['variables']['node_debug'] = 'true' if options.debug else 'false'
  o['variables']['node_prefix'] = options.prefix if options.prefix else ''
  o['variables']['node_use_dtrace'] = 'true' if options.with_dtrace else 'false'
  o['variables']['host_arch'] = host_arch()
  o['variables']['target_arch'] = target_arch()

  # TODO move to node.gyp
  if sys.platform == 'sunos5':
    o['variables']['visibility'] = '' # FIXME -fvisibility=hidden, should be a gcc check


def configure_libz(o):
  o['libraries'] += ['-lz']


def configure_v8(o):
  o['variables']['v8_use_snapshot'] = 'true' if not options.without_snapshot else 'false'
  o['variables']['node_shared_v8'] = 'true' if options.shared_v8 else 'false'

  # 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]
  if options.shared_v8_includes:
    o['include_dirs'] += [options.shared_v8_includes]


def configure_cares(o):
  o['variables']['node_shared_cares'] = 'true' if options.shared_cares else 'false'

  # 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_includes:
    o['include_dirs'] += [options.shared_cares_includes]


def configure_openssl(o):
  o['variables']['node_use_openssl'] = 'false' if options.without_ssl else 'true'

  if options.without_ssl:
    return

  if options.no_ssl2:
    o['defines'] += ['OPENSSL_NO_SSL2=1']

  out = pkg_config('openssl')
  (libs, cflags) = out if out else ('', '')

  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()

  if libs or cflags or options.openssl_libpath or options.openssl_includes:
    o['variables']['node_use_system_openssl'] = 'true'
  else:
    o['variables']['node_use_system_openssl'] = 'false'


print "configure options:", options

output = {
  'variables': {},
  'include_dirs': [],
  'libraries': [],
  'defines': [],
  'cflags': [],
}

configure_node(output)
configure_libz(output)
configure_v8(output)
configure_cares(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
}

fn = os.path.join(root_dir, 'options.gypi')
print "creating ", fn

f = open(fn, 'w+')
f.write("# Do not edit. Generated by the configure script.\n")
json.dump(output, f, indent=2, skipkeys=True)
f.write("\n")
f.close()