blob: 1b204e6c0f37b4222e6da18fc9b9601c7924a6a0 [file] [log] [blame]
Ryana3627c02009-05-27 14:29:551# /usr/bin/env python
Ryan8ddf9302009-09-02 18:19:522import re
Ryan1a126ed2009-04-04 12:50:153import Options
Ryan41d89f62009-07-28 10:29:184import sys, os, shutil
Ryan Dahld979ac92009-10-09 13:00:125from Utils import cmd_output
Ryan1a126ed2009-04-04 12:50:156from os.path import join, dirname, abspath
Ryana4593e32009-04-23 11:18:387from logging import fatal
8
Ryan Dahld979ac92009-10-09 13:00:129cwd = os.getcwd()
Ryan Dahld79b6e92009-10-09 16:10:5910VERSION="0.1.14"
Ryan4d921992009-08-26 23:11:1611APPNAME="node.js"
12
Ryan63a9cd32009-04-15 08:08:2813import js2c
14
Ryan1a126ed2009-04-04 12:50:1515srcdir = '.'
16blddir = 'build'
17
18def set_options(opt):
19 # the gcc module provides a --debug-level option
20 opt.tool_options('compiler_cxx')
21 opt.tool_options('compiler_cc')
Ryan4d921992009-08-26 23:11:1622 opt.tool_options('misc')
Ryan29b528c2009-04-23 15:29:3123 opt.add_option( '--debug'
24 , action='store_true'
25 , default=False
26 , help='Build debug variant [Default: False]'
27 , dest='debug'
28 )
Ryan7bad9de2009-06-16 13:47:5729 opt.add_option( '--efence'
30 , action='store_true'
31 , default=False
32 , help='Build with -lefence for debugging [Default: False]'
33 , dest='efence'
34 )
Ryan1a126ed2009-04-04 12:50:1535
Ryan41d89f62009-07-28 10:29:1836def mkdir_p(dir):
37 if not os.path.exists (dir):
38 os.makedirs (dir)
39
Ryan Dahl18da8ff2009-09-28 20:39:0040# Copied from Python 2.6 because 2.4.4 at least is broken by not using
41# mkdirs
42# http://mail.python.org/pipermail/python-bugs-list/2005-January/027118.html
43def copytree(src, dst, symlinks=False, ignore=None):
44 names = os.listdir(src)
45 if ignore is not None:
46 ignored_names = ignore(src, names)
47 else:
48 ignored_names = set()
49
50 os.makedirs(dst)
51 errors = []
52 for name in names:
53 if name in ignored_names:
54 continue
Ryan Dahl53ebe752009-10-08 21:20:1455 srcname = join(src, name)
56 dstname = join(dst, name)
Ryan Dahl18da8ff2009-09-28 20:39:0057 try:
58 if symlinks and os.path.islink(srcname):
59 linkto = os.readlink(srcname)
60 os.symlink(linkto, dstname)
61 elif os.path.isdir(srcname):
62 copytree(srcname, dstname, symlinks, ignore)
63 else:
64 shutil.copy2(srcname, dstname)
65 # XXX What about devices, sockets etc.?
66 except (IOError, os.error), why:
67 errors.append((srcname, dstname, str(why)))
68 # catch the Error from the recursive copytree so that we can
69 # continue with other files
70 except Error, err:
71 errors.extend(err.args[0])
72 try:
73 shutil.copystat(src, dst)
74 except OSError, why:
75 if WindowsError is not None and isinstance(why, WindowsError):
76 # Copying file access times may fail on Windows
77 pass
78 else:
79 errors.extend((src, dst, str(why)))
80 if errors:
81 raise Error, errors
82
Ryan41d89f62009-07-28 10:29:1883def conf_subproject (conf, subdir, command=None):
84 print("---- %s ----" % subdir)
85 src = join(conf.srcdir, subdir)
86 if not os.path.exists (src): fatal("no such subproject " + subdir)
87
88 default_tgt = join(conf.blddir, "default", subdir)
89
90 if not os.path.exists(default_tgt):
Ryan Dahl18da8ff2009-09-28 20:39:0091 copytree(src, default_tgt, True)
Ryan41d89f62009-07-28 10:29:1892
93 if command:
94 if os.system("cd %s && %s" % (default_tgt, command)) != 0:
95 fatal("Configuring %s failed." % (subdir))
96
97 debug_tgt = join(conf.blddir, "debug", subdir)
98
99 if not os.path.exists(debug_tgt):
Ryan Dahl18da8ff2009-09-28 20:39:00100 copytree(default_tgt, debug_tgt, True)
Ryan41d89f62009-07-28 10:29:18101
Ryan1a126ed2009-04-04 12:50:15102def configure(conf):
103 conf.check_tool('compiler_cxx')
104 conf.check_tool('compiler_cc')
Ryana4593e32009-04-23 11:18:38105
Ryan8e7bbf22009-04-23 17:26:56106 conf.env["USE_DEBUG"] = Options.options.debug
Ryan1a126ed2009-04-04 12:50:15107
Ryan2b6d7242009-06-20 13:07:10108 conf.check(lib='dl', uselib_store='DL')
Ryan8152f9c2009-09-01 12:15:29109 conf.env.append_value("CCFLAGS", "-rdynamic")
Ryana97dce72009-08-31 09:14:34110 conf.env.append_value("LINKFLAGS_DL", "-rdynamic")
111
Ryan8152f9c2009-09-01 12:15:29112 #if Options.options.debug:
113 # conf.check(lib='profiler', uselib_store='PROFILER')
Ryan7bad9de2009-06-16 13:47:57114
Ryan8152f9c2009-09-01 12:15:29115 #if Options.options.efence:
116 # conf.check(lib='efence', libpath=['/usr/lib', '/usr/local/lib'], uselib_store='EFENCE')
Ryana3627c02009-05-27 14:29:55117
Ryan Dahl8b62e862009-10-10 09:58:36118 if not conf.check(lib="execinfo", libpath=['/usr/lib', '/usr/local/lib'], uselib_store="EXECINFO"):
119 if sys.platform.startswith("freebsd"):
Ryan7bad9de2009-06-16 13:47:57120 fatal("Install the libexecinfo port from /usr/ports/devel/libexecinfo.")
Ryana3627c02009-05-27 14:29:55121
Ryan1a126ed2009-04-04 12:50:15122 conf.sub_config('deps/libeio')
123 conf.sub_config('deps/libev')
124
Ryan41d89f62009-07-28 10:29:18125 conf_subproject(conf, 'deps/udns', './configure')
Ryan41d89f62009-07-28 10:29:18126
Ryan452d3f12009-06-11 11:40:14127 # Not using TLS yet
128 # if conf.check_cfg(package='gnutls', args='--cflags --libs', uselib_store="GNUTLS"):
129 # conf.define("HAVE_GNUTLS", 1)
Ryan1a126ed2009-04-04 12:50:15130
131 conf.define("HAVE_CONFIG_H", 1)
Ryanc62b1242009-04-22 17:55:08132
Ryan1df6d612009-09-03 13:59:48133 conf.env.append_value("CCFLAGS", "-DX_STACKSIZE=%d" % (1024*64))
Ryan427e3f52009-05-14 11:16:45134
Ryan Dahl2b743aa2009-10-27 11:05:38135 # LFS
136 conf.env.append_value('CCFLAGS', '-D_LARGEFILE_SOURCE')
137 conf.env.append_value('CXXFLAGS', '-D_LARGEFILE_SOURCE')
138 conf.env.append_value('CCFLAGS', '-D_FILE_OFFSET_BITS=64')
139 conf.env.append_value('CXXFLAGS', '-D_FILE_OFFSET_BITS=64')
140
Ryan67af9582009-04-18 13:35:42141 # Split off debug variant before adding variant specific defines
Ryan7e1350f2009-04-16 09:37:44142 debug_env = conf.env.copy()
143 conf.set_env_name('debug', debug_env)
Ryan7e1350f2009-04-16 09:37:44144
Ryan67af9582009-04-18 13:35:42145 # Configure debug variant
146 conf.setenv('debug')
147 debug_env.set_variant('debug')
Ryan8ddf9302009-09-02 18:19:52148 debug_env.append_value('CCFLAGS', ['-DDEBUG', '-g', '-O0', '-Wall', '-Wextra'])
149 debug_env.append_value('CXXFLAGS', ['-DDEBUG', '-g', '-O0', '-Wall', '-Wextra'])
Ryan67af9582009-04-18 13:35:42150 conf.write_config_header("config.h")
151
152 # Configure default variant
153 conf.setenv('default')
Ryan8ddf9302009-09-02 18:19:52154 conf.env.append_value('CCFLAGS', ['-DNDEBUG', '-O3'])
155 conf.env.append_value('CXXFLAGS', ['-DNDEBUG', '-O3'])
Ryan67af9582009-04-18 13:35:42156 conf.write_config_header("config.h")
Ryan63a9cd32009-04-15 08:08:28157
Ryan41d89f62009-07-28 10:29:18158def build_udns(bld):
159 default_build_dir = bld.srcnode.abspath(bld.env_of_name("default"))
Ryan1a126ed2009-04-04 12:50:15160
Ryan41d89f62009-07-28 10:29:18161 default_dir = join(default_build_dir, "deps/udns")
162
163 static_lib = bld.env["staticlib_PATTERN"] % "udns"
164
165 rule = 'cd %s && make'
166
167 default = bld.new_task_gen(
168 target= join("deps/udns", static_lib),
169 rule= rule % default_dir,
170 before= "cxx",
171 install_path= None
172 )
173
174 bld.env["CPPPATH_UDNS"] = "deps/udns"
175 bld.env["STATICLIB_UDNS"] = "udns"
176
177 bld.env_of_name('default')["STATICLIB_UDNS"] = "udns"
178 bld.env_of_name('default')["LIBPATH_UDNS"] = default_dir
179
180 if bld.env["USE_DEBUG"]:
181 debug_build_dir = bld.srcnode.abspath(bld.env_of_name("debug"))
182 debug_dir = join(debug_build_dir, "deps/udns")
183 debug = default.clone("debug")
184 debug.rule = rule % debug_dir
185 #debug.target = join(debug_dir, static_lib)
186 bld.env_of_name('debug')["STATICLIB_UDNS"] = "udns"
187 bld.env_of_name('debug')["LIBPATH_UDNS"] = debug_dir
Ryan Dahlbf0d2782009-10-03 20:42:03188 bld.install_files('${PREFIX}/include/node/', 'deps/udns/udns.h')
Ryan41d89f62009-07-28 10:29:18189
Ryan Dahl53ebe752009-10-08 21:20:14190def v8_cmd(bld, variant):
191 scons = join(cwd, 'tools/scons/scons.py')
Ryan1a126ed2009-04-04 12:50:15192 deps_src = join(bld.path.abspath(),"deps")
Ryan1a126ed2009-04-04 12:50:15193 v8dir_src = join(deps_src,"v8")
Ryan Dahl53ebe752009-10-08 21:20:14194
Ryan Dahlbc9b3432009-10-02 12:10:40195 # NOTE: We want to compile V8 to export its symbols. I.E. Do not want
196 # -fvisibility=hidden. When using dlopen() it seems that the loaded DSO
197 # cannot see symbols in the executable which are hidden, even if the
198 # executable is statically linked together...
Ryan8ddf9302009-09-02 18:19:52199
Ryan Dahl7d9d8812009-10-26 21:27:52200 # XXX Remove this when v8 defaults x86_64 to native builds
Ryan Dahld85724d2009-10-08 22:34:39201 arch = ""
Ryan Dahl7d9d8812009-10-26 21:27:52202 if bld.env['DEST_CPU'] == 'x86_64':
Ryan Dahld85724d2009-10-08 22:34:39203 arch = "arch=x64"
204
205 if variant == "default":
206 mode = "release"
207 else:
208 mode = "debug"
Ryana4593e32009-04-23 11:18:38209
Ryan Dahl53ebe752009-10-08 21:20:14210 cmd_R = 'python %s -C %s -Y %s visibility=default mode=%s %s library=static snapshot=on'
211
212 cmd = cmd_R % ( scons
213 , bld.srcnode.abspath(bld.env_of_name(variant))
214 , v8dir_src
215 , mode
216 , arch
217 )
218 return cmd
219
220
221def build_v8(bld):
Ryan1a126ed2009-04-04 12:50:15222 v8 = bld.new_task_gen(
Ryan Dahl59b7a1b2009-10-09 10:49:48223 source = 'deps/v8/SConstruct '
224 + bld.path.ant_glob('v8/include/*')
225 + bld.path.ant_glob('v8/src/*'),
Ryan Dahl53ebe752009-10-08 21:20:14226 target = bld.env["staticlib_PATTERN"] % "v8",
227 rule = v8_cmd(bld, "default"),
228 before = "cxx",
229 install_path = None
Ryan1a126ed2009-04-04 12:50:15230 )
Ryan Dahl8b62e862009-10-10 09:58:36231 v8.uselib = "EXECINFO"
Ryan1a126ed2009-04-04 12:50:15232 bld.env["CPPPATH_V8"] = "deps/v8/include"
Ryana4593e32009-04-23 11:18:38233 bld.env_of_name('default')["STATICLIB_V8"] = "v8"
Ryan8ddf9302009-09-02 18:19:52234 bld.env_of_name('default')["LINKFLAGS_V8"] = ["-pthread"]
Ryana4593e32009-04-23 11:18:38235
236 ### v8 debug
Ryan29b528c2009-04-23 15:29:31237 if bld.env["USE_DEBUG"]:
Ryan29b528c2009-04-23 15:29:31238 v8_debug = v8.clone("debug")
Ryan Dahl53ebe752009-10-08 21:20:14239 v8_debug.rule = v8_cmd(bld, "debug")
240 v8_debug.target = bld.env["staticlib_PATTERN"] % "v8_g"
Ryan Dahl8b62e862009-10-10 09:58:36241 v8_debug.uselib = "EXECINFO"
Ryan29b528c2009-04-23 15:29:31242 bld.env_of_name('debug')["STATICLIB_V8"] = "v8_g"
Ryan8ddf9302009-09-02 18:19:52243 bld.env_of_name('debug')["LINKFLAGS_V8"] = ["-pthread"]
Ryan1a126ed2009-04-04 12:50:15244
Ryan Dahl53ebe752009-10-08 21:20:14245 bld.install_files('${PREFIX}/include/node/', 'deps/v8/include/*.h')
Ryan2b6d7242009-06-20 13:07:10246
Ryan41d89f62009-07-28 10:29:18247def build(bld):
248 bld.add_subdirs('deps/libeio deps/libev')
249
250 build_udns(bld)
251 build_v8(bld)
252
Ryan0fb0af32009-07-25 15:52:21253 ### evcom
254 evcom = bld.new_task_gen("cc", "staticlib")
255 evcom.source = "deps/evcom/evcom.c"
256 evcom.includes = "deps/evcom/ deps/libev/"
257 evcom.name = "evcom"
258 evcom.target = "evcom"
259 # evcom.uselib = "GNUTLS"
260 evcom.install_path = None
Ryan29b528c2009-04-23 15:29:31261 if bld.env["USE_DEBUG"]:
Ryan0fb0af32009-07-25 15:52:21262 evcom.clone("debug")
Ryan Dahlbf0d2782009-10-03 20:42:03263 bld.install_files('${PREFIX}/include/node/', 'deps/evcom/evcom.h')
Ryan1a126ed2009-04-04 12:50:15264
Ryan5a071ad2009-05-03 12:09:16265 ### http_parser
266 http_parser = bld.new_task_gen("cc", "staticlib")
267 http_parser.source = "deps/http_parser/http_parser.c"
268 http_parser.includes = "deps/http_parser/"
269 http_parser.name = "http_parser"
270 http_parser.target = "http_parser"
271 http_parser.install_path = None
Ryan29b528c2009-04-23 15:29:31272 if bld.env["USE_DEBUG"]:
Ryan5a071ad2009-05-03 12:09:16273 http_parser.clone("debug")
Ryan1a126ed2009-04-04 12:50:15274
Ryan17c6a672009-08-24 18:25:24275 ### coupling
276 coupling = bld.new_task_gen("cc", "staticlib")
277 coupling.source = "deps/coupling/coupling.c"
278 coupling.includes = "deps/coupling/"
279 coupling.name = "coupling"
280 coupling.target = "coupling"
281 coupling.install_path = None
282 if bld.env["USE_DEBUG"]:
283 coupling.clone("debug")
284
Ryan63a9cd32009-04-15 08:08:28285 ### src/native.cc
286 def javascript_in_c(task):
287 env = task.env
288 source = map(lambda x: x.srcpath(env), task.inputs)
289 targets = map(lambda x: x.srcpath(env), task.outputs)
290 js2c.JS2C(source, targets)
291
292 native_cc = bld.new_task_gen(
Ryan2ecd7ff2009-06-25 17:13:20293 source = """
Ryaneb105532009-07-16 15:19:02294 src/util.js
Ryan2ecd7ff2009-06-25 17:13:20295 src/events.js
Ryan2ecd7ff2009-06-25 17:13:20296 src/file.js
297 src/node.js
298 """,
Ryan Dahl53ebe752009-10-08 21:20:14299 target="src/node_natives.h",
Ryan63a9cd32009-04-15 08:08:28300 before="cxx"
301 )
Ryan8e7bbf22009-04-23 17:26:56302 native_cc.install_path = None
Ryan Dahl4bcb01c2009-10-16 20:53:44303
304 # Add the rule /after/ cloning the debug
305 # This is a work around for an error had in python 2.4.3 (I'll paste the
306 # error that was had into the git commit meessage. git-blame to find out
307 # where.)
Ryan29b528c2009-04-23 15:29:31308 if bld.env["USE_DEBUG"]:
Ryan Dahl4bcb01c2009-10-16 20:53:44309 native_cc_debug = native_cc.clone("debug")
310 native_cc_debug.rule = javascript_in_c
311 native_cc.rule = javascript_in_c
Ryan63a9cd32009-04-15 08:08:28312
Ryan2b6d7242009-06-20 13:07:10313 ### node lib
Ryan8152f9c2009-09-01 12:15:29314 node = bld.new_task_gen("cxx", "program")
315 node.name = "node"
316 node.target = "node"
317 node.source = """
Ryan1a126ed2009-04-04 12:50:15318 src/node.cc
Ryan Dahla5df0f62009-10-27 10:46:58319 src/node_child_process.cc
320 src/node_constants.cc
321 src/node_dns.cc
322 src/node_events.cc
323 src/node_file.cc
324 src/node_http.cc
325 src/node_net.cc
326 src/node_signal_handler.cc
Ryan17c6a672009-08-24 18:25:24327 src/node_stdio.cc
Ryan Dahla5df0f62009-10-27 10:46:58328 src/node_timer.cc
Ryan1a126ed2009-04-04 12:50:15329 """
Ryan8152f9c2009-09-01 12:15:29330 node.includes = """
Ryan1a126ed2009-04-04 12:50:15331 src/
332 deps/v8/include
333 deps/libev
Ryan41d89f62009-07-28 10:29:18334 deps/udns
Ryan1a126ed2009-04-04 12:50:15335 deps/libeio
Ryan0fb0af32009-07-25 15:52:21336 deps/evcom
Ryan5a071ad2009-05-03 12:09:16337 deps/http_parser
Ryan17c6a672009-08-24 18:25:24338 deps/coupling
Ryan1a126ed2009-04-04 12:50:15339 """
Ryan8152f9c2009-09-01 12:15:29340 node.uselib_local = "evcom ev eio http_parser coupling"
341 node.uselib = "UDNS V8 EXECINFO DL"
342 node.install_path = '${PREFIX}/lib'
Ryan8e7bbf22009-04-23 17:26:56343 node.install_path = '${PREFIX}/bin'
344 node.chmod = 0755
345
Ryan4d921992009-08-26 23:11:16346 def subflags(program):
Ryan Dahld979ac92009-10-09 13:00:12347 if os.path.exists(join(cwd, ".git")):
Ryan Dahl962e9292009-10-09 14:16:27348 actual_version=cmd_output("git describe").strip()
Ryan Dahld979ac92009-10-09 13:00:12349 else:
350 actual_version=VERSION
351
Ryanb73264d2009-08-27 00:15:11352 x = { 'CCFLAGS' : " ".join(program.env["CCFLAGS"])
353 , 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"])
354 , 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"])
Ryan Dahld979ac92009-10-09 13:00:12355 , 'VERSION' : actual_version
Ryanb73264d2009-08-27 00:15:11356 , 'PREFIX' : program.env["PREFIX"]
Ryan4d921992009-08-26 23:11:16357 }
Ryan Dahlbf0d2782009-10-03 20:42:03358 return x
Ryan4d921992009-08-26 23:11:16359
Ryan4d921992009-08-26 23:11:16360 # process file.pc.in -> file.pc
Ryan Dahld979ac92009-10-09 13:00:12361
Ryanb73264d2009-08-27 00:15:11362 node_version = bld.new_task_gen('subst', before="cxx")
363 node_version.source = 'src/node_version.h.in'
364 node_version.target = 'src/node_version.h'
365 node_version.dict = subflags(node)
Ryana97dce72009-08-31 09:14:34366 node_version.install_path = '${PREFIX}/include/node'
Ryan4d921992009-08-26 23:11:16367
Ryan29b528c2009-04-23 15:29:31368 if bld.env["USE_DEBUG"]:
Ryan2b6d7242009-06-20 13:07:10369 node_g = node.clone("debug")
370 node_g.target = "node_g"
Ryan4d921992009-08-26 23:11:16371
Ryanb73264d2009-08-27 00:15:11372 node_version_g = node_version.clone("debug")
373 node_version_g.dict = subflags(node_g)
Ryana97dce72009-08-31 09:14:34374 node_version_g.install_path = None
Ryan4d921992009-08-26 23:11:16375
Ryana97dce72009-08-31 09:14:34376
377 bld.install_files('${PREFIX}/include/node/', """
378 config.h
379 src/node.h
380 src/object_wrap.h
381 src/events.h
382 src/net.h
Ryan Dahlbf0d2782009-10-03 20:42:03383 """)
384
385 # Only install the man page if it exists.
386 # Do 'make doc install' to build and install it.
387 if os.path.exists('doc/node.1'):
388 bld.install_files('${PREFIX}/share/man/man1/', 'doc/node.1')
389
390 bld.install_files('${PREFIX}/bin/', 'bin/*', chmod=0755)
Ryan Dahl6f17ca52009-10-03 17:08:05391
392 # Why am I using two lines? Because WAF SUCKS.
Ryan Dahlbf0d2782009-10-03 20:42:03393 bld.install_files('${PREFIX}/lib/node/wafadmin', 'tools/wafadmin/*.py')
394 bld.install_files('${PREFIX}/lib/node/wafadmin/Tools', 'tools/wafadmin/Tools/*.py')
Ryan Dahl6f17ca52009-10-03 17:08:05395
Ryan Dahlbf0d2782009-10-03 20:42:03396 bld.install_files('${PREFIX}/lib/node/libraries/', 'lib/*.js')