blob: 8633d48c31d02a9df4c8f4abde82649df434ac77 [file] [log] [blame]
Ryan Dahl14b04b02011-11-15 03:02:441#!/usr/bin/env python
Ryan Dahl14b04b02011-11-15 03:02:442import optparse
3import os
jbergstroem45605c92011-12-18 22:53:074import pprint
Ben Noordhuis30b29d82012-03-02 01:14:275import re
Ben Noordhuisb9e1bb32011-11-15 16:17:056import subprocess
Ryan Dahl14b04b02011-11-15 03:02:447import sys
Ryan Dahl5cf4cef2010-10-26 01:17:198
Ben Noordhuis50627412012-03-05 15:55:249CC = os.environ.get('CC', 'cc')
10
Ryan Dahl14b04b02011-11-15 03:02:4411root_dir = os.path.dirname(__file__)
12sys.path.insert(0, os.path.join(root_dir, 'deps', 'v8', 'tools'))
Ryan Dahl97c97452010-11-01 23:03:3213
Ryan Dahl14b04b02011-11-15 03:02:4414# parse our options
15parser = optparse.OptionParser()
Ryan Dahl97c97452010-11-01 23:03:3216
Ryan Dahl14b04b02011-11-15 03:02:4417parser.add_option("--debug",
18 action="store_true",
19 dest="debug",
20 help="Also build debug build")
Ryan Dahl97c97452010-11-01 23:03:3221
Ryan Dahl14b04b02011-11-15 03:02:4422parser.add_option("--prefix",
23 action="store",
24 dest="prefix",
25 help="Select the install prefix (defaults to /usr/local)")
26
Fedor Indutnya9f2c4a2011-12-17 08:09:1427parser.add_option("--without-npm",
28 action="store_true",
29 dest="without_npm",
30 help="Don\'t install the bundled npm package manager")
31
Fedor Indutny6e76a7c2012-01-17 05:48:5032parser.add_option("--without-waf",
33 action="store_true",
34 dest="without_waf",
35 help="Don\'t install node-waf")
36
Ryan Dahl14b04b02011-11-15 03:02:4437parser.add_option("--without-ssl",
38 action="store_true",
39 dest="without_ssl",
40 help="Build without SSL")
41
42parser.add_option("--without-snapshot",
43 action="store_true",
44 dest="without_snapshot",
45 help="Build without snapshotting V8 libraries. You might want to set"
46 " this for cross-compiling. [Default: False]")
47
48parser.add_option("--shared-v8",
49 action="store_true",
50 dest="shared_v8",
51 help="Link to a shared V8 DLL instead of static linking")
52
53parser.add_option("--shared-v8-includes",
54 action="store",
55 dest="shared_v8_includes",
56 help="Directory containing V8 header files")
57
58parser.add_option("--shared-v8-libpath",
59 action="store",
60 dest="shared_v8_libpath",
61 help="A directory to search for the shared V8 DLL")
62
63parser.add_option("--shared-v8-libname",
64 action="store",
65 dest="shared_v8_libname",
66 help="Alternative lib name to link to (default: 'v8')")
67
Ryan Dahle61de702011-12-16 23:00:2368parser.add_option("--openssl-use-sys",
Nathan Rajlich70e68892012-03-17 19:57:2469 action="store_true",
Ryan Dahle61de702011-12-16 23:00:2370 dest="openssl_use_sys",
71 help="Use the system OpenSSL instead of one included with Node")
72
Ryan Dahl14b04b02011-11-15 03:02:4473parser.add_option("--openssl-includes",
74 action="store",
75 dest="openssl_includes",
76 help="A directory to search for the OpenSSL includes")
77
78parser.add_option("--openssl-libpath",
79 action="store",
80 dest="openssl_libpath",
81 help="A directory to search for the OpenSSL libraries")
82
83parser.add_option("--no-ssl2",
84 action="store_true",
85 dest="no_ssl2",
86 help="Disable OpenSSL v2")
87
T.C. Hollingsworthd03b8482012-02-26 23:02:2188parser.add_option("--shared-zlib",
89 action="store_true",
90 dest="shared_zlib",
91 help="Link to a shared zlib DLL instead of static linking")
92
93parser.add_option("--shared-zlib-includes",
94 action="store",
95 dest="shared_zlib_includes",
96 help="Directory containing zlib header files")
97
98parser.add_option("--shared-zlib-libpath",
99 action="store",
100 dest="shared_zlib_libpath",
101 help="A directory to search for the shared zlib DLL")
102
103parser.add_option("--shared-zlib-libname",
104 action="store",
105 dest="shared_zlib_libname",
106 help="Alternative lib name to link to (default: 'z')")
107
Ryan Dahl14b04b02011-11-15 03:02:44108parser.add_option("--with-dtrace",
109 action="store_true",
110 dest="with_dtrace",
Dave Pachecocc152992012-03-28 17:26:10111 help="Build with DTrace (default is true on supported systems)")
112
113parser.add_option("--without-dtrace",
114 action="store_true",
115 dest="without_dtrace",
116 help="Build without DTrace")
Ryan Dahl14b04b02011-11-15 03:02:44117
118# CHECKME does this still work with recent releases of V8?
119parser.add_option("--gdb",
120 action="store_true",
121 dest="gdb",
122 help="add gdb support")
123
124parser.add_option("--dest-cpu",
125 action="store",
126 dest="dest_cpu",
127 help="CPU architecture to build for. Valid values are: arm, ia32, x64")
128
129(options, args) = parser.parse_args()
130
131
Ben Noordhuisa0332612011-11-29 15:27:52132def b(value):
133 """Returns the string 'true' if value is truthy, 'false' otherwise."""
134 if value:
135 return 'true'
136 else:
137 return 'false'
138
139
Ryan Dahl14b04b02011-11-15 03:02:44140def pkg_config(pkg):
141 cmd = os.popen('pkg-config --libs %s' % pkg, 'r')
142 libs = cmd.readline().strip()
143 ret = cmd.close()
144 if (ret): return None
145
146 cmd = os.popen('pkg-config --cflags %s' % pkg, 'r')
147 cflags = cmd.readline().strip()
148 ret = cmd.close()
149 if (ret): return None
150
151 return (libs, cflags)
152
153
Nathan Rajlichdc752322012-03-15 22:17:25154def host_arch_cc():
155 """Host architecture check using the CC command."""
Nathan Rajlich19133ca2012-02-20 20:27:07156
Javier Hernández792d9a92012-05-04 22:06:24157 try:
158 p = subprocess.Popen(CC.split() + ['-dM', '-E', '-'],
159 stdin=subprocess.PIPE,
160 stdout=subprocess.PIPE,
161 stderr=subprocess.PIPE)
162 except OSError:
163 print '''Node.js configure error: No acceptable C compiler found!
164
165 Please make sure you have a C compiler installed on your system and/or
166 consider adjusting the CC environment variable if you installed
167 it in a non-standard prefix.
168 '''
169 sys.exit()
170
Nathan Rajlich19133ca2012-02-20 20:27:07171 p.stdin.write('\n')
172 out = p.communicate()[0]
173
174 out = str(out).split('\n')
175
176 k = {}
177 for line in out:
178 import shlex
179 lst = shlex.split(line)
180 if len(lst) > 2:
181 key = lst[1]
182 val = lst[2]
183 k[key] = val
184
185 matchup = {
186 '__x86_64__' : 'x64',
187 '__i386__' : 'ia32',
188 '__arm__' : 'arm',
Karl Skomski09ccbef2012-02-13 13:28:43189 }
190
Nathan Rajlich19133ca2012-02-20 20:27:07191 rtn = 'ia32' # default
Karl Skomski09ccbef2012-02-13 13:28:43192
Nathan Rajlich19133ca2012-02-20 20:27:07193 for i in matchup:
194 if i in k and k[i] != '0':
195 rtn = matchup[i]
196 break
197
198 return rtn
Ryan Dahl14b04b02011-11-15 03:02:44199
200
Nathan Rajlichdc752322012-03-15 22:17:25201def host_arch_win():
202 """Host architecture check using environ vars (better way to do this?)"""
203
204 arch = os.environ.get('PROCESSOR_ARCHITECTURE', 'x86')
205
206 matchup = {
207 'AMD64' : 'x64',
208 'x86' : 'ia32',
209 'arm' : 'arm',
210 }
211
212 return matchup.get(arch, 'ia32')
213
214
215def host_arch():
216 """Host architecture. One of arm, ia32 or x64."""
217 if os.name == 'nt':
218 arch = host_arch_win()
219 else:
220 arch = host_arch_cc()
221 return arch
222
223
Ryan Dahl14b04b02011-11-15 03:02:44224def target_arch():
Ryan Dahl14b04b02011-11-15 03:02:44225 return host_arch()
226
Sadique Alic9676c92012-05-01 10:33:36227def cc_version():
Ben Noordhuis30b29d82012-03-02 01:14:27228 try:
Ben Noordhuis50627412012-03-05 15:55:24229 proc = subprocess.Popen([CC, '-v'], stderr=subprocess.PIPE)
Ben Noordhuis30b29d82012-03-02 01:14:27230 except OSError:
231 return None
Sadique Alic9676c92012-05-01 10:33:36232 lines = proc.communicate()[1].split('\n')
233 version_line = None
234 for i, line in enumerate(lines):
235 if 'version' in line:
236 version_line = line
237 if not version_line:
238 return None
239 version = version_line.split("version")[1].strip().split()[0].split(".")
240 if not version:
241 return None
242 return ['LLVM' in version_line] + version
Ryan Dahl14b04b02011-11-15 03:02:44243
244def configure_node(o):
Ben Noordhuis93465d32012-01-15 15:50:58245 # TODO add gdb
Ryan Dahl14b04b02011-11-15 03:02:44246 o['variables']['node_prefix'] = options.prefix if options.prefix else ''
Fedor Indutnya9f2c4a2011-12-17 08:09:14247 o['variables']['node_install_npm'] = b(not options.without_npm)
Fedor Indutny6e76a7c2012-01-17 05:48:50248 o['variables']['node_install_waf'] = b(not options.without_waf)
Ryan Dahl14b04b02011-11-15 03:02:44249 o['variables']['host_arch'] = host_arch()
Ben Noordhuis93465d32012-01-15 15:50:58250 o['variables']['target_arch'] = options.dest_cpu or target_arch()
Shigeki Ohtsu680d75a2012-01-18 09:37:02251 o['default_configuration'] = 'Debug' if options.debug else 'Release'
Ryan Dahl14b04b02011-11-15 03:02:44252
Ben Noordhuis30b29d82012-03-02 01:14:27253 # turn off strict aliasing if gcc < 4.6.0 unless it's llvm-gcc
254 # see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45883
255 # see http://code.google.com/p/v8/issues/detail?id=884
Ben Noordhuis50627412012-03-05 15:55:24256 o['variables']['strict_aliasing'] = b(
Sadique Alic9676c92012-05-01 10:33:36257 'clang' in CC or cc_version() >= [False, 4, 6, 0])
Ben Noordhuis30b29d82012-03-02 01:14:27258
Ben Noordhuis5ebc05f2012-03-05 16:01:59259 # clang has always supported -fvisibility=hidden, right?
Sadique Alic9676c92012-05-01 10:33:36260 if 'clang' not in CC and cc_version() < [False, 4, 0, 0]:
Ben Noordhuis5ebc05f2012-03-05 16:01:59261 o['variables']['visibility'] = ''
Ben Noordhuis30b29d82012-03-02 01:14:27262
Dave Pachecocc152992012-03-28 17:26:10263 # By default, enable DTrace on SunOS systems. Don't allow it on other
264 # systems, since it won't work. (The MacOS build process is different than
265 # SunOS, and we haven't implemented it.)
266 if sys.platform.startswith('sunos'):
267 o['variables']['node_use_dtrace'] = b(not options.without_dtrace);
isaacsc3938532012-05-16 21:49:51268 # Strict aliasing causes problems with the V8 snapshots on SunOS
269 o['variables']['strict_aliasing'] = b(False);
Dave Pachecocc152992012-03-28 17:26:10270 elif b(options.with_dtrace) == 'true':
271 raise Exception('DTrace is currently only supported on SunOS systems.')
272 else:
273 o['variables']['node_use_dtrace'] = 'false'
274
Ryan Dahl14b04b02011-11-15 03:02:44275
276def configure_libz(o):
T.C. Hollingsworthd03b8482012-02-26 23:02:21277 o['variables']['node_shared_zlib'] = b(options.shared_zlib)
278
279 # assume shared_zlib if one of these is set?
280 if options.shared_zlib_libpath:
281 o['libraries'] += ['-L%s' % options.shared_zlib_libpath]
282 if options.shared_zlib_libname:
283 o['libraries'] += ['-l%s' % options.shared_zlib_libname]
284 elif options.shared_zlib:
285 o['libraries'] += ['-lz']
286 if options.shared_zlib_includes:
287 o['include_dirs'] += [options.shared_zlib_includes]
Ryan Dahl14b04b02011-11-15 03:02:44288
289
290def configure_v8(o):
Ben Noordhuisa0332612011-11-29 15:27:52291 o['variables']['v8_use_snapshot'] = b(not options.without_snapshot)
292 o['variables']['node_shared_v8'] = b(options.shared_v8)
Ryan Dahl14b04b02011-11-15 03:02:44293
294 # assume shared_v8 if one of these is set?
295 if options.shared_v8_libpath:
296 o['libraries'] += ['-L%s' % options.shared_v8_libpath]
297 if options.shared_v8_libname:
298 o['libraries'] += ['-l%s' % options.shared_v8_libname]
isaacs59ecf2c2012-02-23 22:52:18299 elif options.shared_v8:
300 o['libraries'] += ['-lv8']
Ryan Dahl14b04b02011-11-15 03:02:44301 if options.shared_v8_includes:
302 o['include_dirs'] += [options.shared_v8_includes]
isaacs59ecf2c2012-02-23 22:52:18303 o['variables']['node_shared_v8_includes'] = options.shared_v8_includes
Ryan Dahl14b04b02011-11-15 03:02:44304
305
Ryan Dahl14b04b02011-11-15 03:02:44306def configure_openssl(o):
Ben Noordhuisa0332612011-11-29 15:27:52307 o['variables']['node_use_openssl'] = b(not options.without_ssl)
Ryan Dahl14b04b02011-11-15 03:02:44308
309 if options.without_ssl:
310 return
311
312 if options.no_ssl2:
313 o['defines'] += ['OPENSSL_NO_SSL2=1']
314
Ryan Dahle61de702011-12-16 23:00:23315 if not options.openssl_use_sys:
316 o['variables']['node_use_system_openssl'] = b(False)
Ryan Dahl14b04b02011-11-15 03:02:44317 else:
Ryan Dahle61de702011-12-16 23:00:23318 out = pkg_config('openssl')
319 (libs, cflags) = out if out else ('', '')
Ryan Dahl14b04b02011-11-15 03:02:44320
Ryan Dahle61de702011-12-16 23:00:23321 if options.openssl_libpath:
322 o['libraries'] += ['-L%s' % options.openssl_libpath, '-lssl', '-lcrypto']
323 else:
324 o['libraries'] += libs.split()
Ryan Dahl14b04b02011-11-15 03:02:44325
Ryan Dahle61de702011-12-16 23:00:23326 if options.openssl_includes:
327 o['include_dirs'] += [options.openssl_includes]
328 else:
329 o['cflags'] += cflags.split()
330
331 o['variables']['node_use_system_openssl'] = b(
332 libs or cflags or options.openssl_libpath or options.openssl_includes)
Ryan Dahl14b04b02011-11-15 03:02:44333
334
Ryan Dahl14b04b02011-11-15 03:02:44335output = {
336 'variables': {},
337 'include_dirs': [],
338 'libraries': [],
339 'defines': [],
340 'cflags': [],
341}
342
343configure_node(output)
344configure_libz(output)
345configure_v8(output)
Ryan Dahl14b04b02011-11-15 03:02:44346configure_openssl(output)
347
348# variables should be a root level element,
349# move everything else to target_defaults
350variables = output['variables']
351del output['variables']
352output = {
353 'variables': variables,
354 'target_defaults': output
355}
Ryan Dahl624f70e2011-12-23 22:24:50356pprint.pprint(output, indent=2)
Ryan Dahl14b04b02011-11-15 03:02:44357
Ben Noordhuise493b292012-01-17 22:02:15358def write(filename, data):
359 filename = os.path.join(root_dir, filename)
360 print "creating ", filename
Nathan Rajlichfdeeabb2012-04-11 18:16:11361 f = open(filename, 'w+')
362 f.write(data)
Ryan Dahl14b04b02011-11-15 03:02:44363
Ben Noordhuise493b292012-01-17 22:02:15364write('config.gypi', "# Do not edit. Generated by the configure script.\n" +
Nathan Rajlich9b7a6c52012-04-11 18:16:47365 pprint.pformat(output, indent=2) + "\n")
Ben Noordhuise493b292012-01-17 22:02:15366
367write('config.mk', "# Do not edit. Generated by the configure script.\n" +
368 ("BUILDTYPE=%s\n" % ('Debug' if options.debug else 'Release')))
Ryan Dahl14b04b02011-11-15 03:02:44369
Nathan Rajlichdc752322012-03-15 22:17:25370if os.name == 'nt':
371 subprocess.call(['python', 'tools/gyp_node', '-f', 'msvs',
372 '-G', 'msvs_version=2010'])
373else:
374 subprocess.call(['tools/gyp_node', '-f', 'make'])