Ryan | a3627c0 | 2009-05-27 14:29:55 | [diff] [blame] | 1 | # /usr/bin/env python |
Ryan | 8ddf930 | 2009-09-02 18:19:52 | [diff] [blame] | 2 | import re |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 3 | import Options |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 4 | import sys, os, shutil |
Ryan Dahl | d979ac9 | 2009-10-09 13:00:12 | [diff] [blame] | 5 | from Utils import cmd_output |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 6 | from os.path import join, dirname, abspath |
Ryan | a4593e3 | 2009-04-23 11:18:38 | [diff] [blame] | 7 | from logging import fatal |
| 8 | |
Ryan Dahl | d979ac9 | 2009-10-09 13:00:12 | [diff] [blame] | 9 | cwd = os.getcwd() |
Ryan Dahl | d79b6e9 | 2009-10-09 16:10:59 | [diff] [blame] | 10 | VERSION="0.1.14" |
Ryan | 4d92199 | 2009-08-26 23:11:16 | [diff] [blame] | 11 | APPNAME="node.js" |
| 12 | |
Ryan | 63a9cd3 | 2009-04-15 08:08:28 | [diff] [blame] | 13 | import js2c |
| 14 | |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 15 | srcdir = '.' |
| 16 | blddir = 'build' |
| 17 | |
| 18 | def set_options(opt): |
| 19 | # the gcc module provides a --debug-level option |
| 20 | opt.tool_options('compiler_cxx') |
| 21 | opt.tool_options('compiler_cc') |
Ryan | 4d92199 | 2009-08-26 23:11:16 | [diff] [blame] | 22 | opt.tool_options('misc') |
Ryan | 29b528c | 2009-04-23 15:29:31 | [diff] [blame] | 23 | opt.add_option( '--debug' |
| 24 | , action='store_true' |
| 25 | , default=False |
| 26 | , help='Build debug variant [Default: False]' |
| 27 | , dest='debug' |
| 28 | ) |
Ryan | 7bad9de | 2009-06-16 13:47:57 | [diff] [blame] | 29 | opt.add_option( '--efence' |
| 30 | , action='store_true' |
| 31 | , default=False |
| 32 | , help='Build with -lefence for debugging [Default: False]' |
| 33 | , dest='efence' |
| 34 | ) |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 35 | |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 36 | def mkdir_p(dir): |
| 37 | if not os.path.exists (dir): |
| 38 | os.makedirs (dir) |
| 39 | |
Ryan Dahl | 18da8ff | 2009-09-28 20:39:00 | [diff] [blame] | 40 | # 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 |
| 43 | def 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 Dahl | 53ebe75 | 2009-10-08 21:20:14 | [diff] [blame] | 55 | srcname = join(src, name) |
| 56 | dstname = join(dst, name) |
Ryan Dahl | 18da8ff | 2009-09-28 20:39:00 | [diff] [blame] | 57 | 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 | |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 83 | def 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 Dahl | 18da8ff | 2009-09-28 20:39:00 | [diff] [blame] | 91 | copytree(src, default_tgt, True) |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 92 | |
| 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 Dahl | 18da8ff | 2009-09-28 20:39:00 | [diff] [blame] | 100 | copytree(default_tgt, debug_tgt, True) |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 101 | |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 102 | def configure(conf): |
| 103 | conf.check_tool('compiler_cxx') |
| 104 | conf.check_tool('compiler_cc') |
Ryan | a4593e3 | 2009-04-23 11:18:38 | [diff] [blame] | 105 | |
Ryan | 8e7bbf2 | 2009-04-23 17:26:56 | [diff] [blame] | 106 | conf.env["USE_DEBUG"] = Options.options.debug |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 107 | |
Ryan | 2b6d724 | 2009-06-20 13:07:10 | [diff] [blame] | 108 | conf.check(lib='dl', uselib_store='DL') |
Ryan | 8152f9c | 2009-09-01 12:15:29 | [diff] [blame] | 109 | conf.env.append_value("CCFLAGS", "-rdynamic") |
Ryan | a97dce7 | 2009-08-31 09:14:34 | [diff] [blame] | 110 | conf.env.append_value("LINKFLAGS_DL", "-rdynamic") |
| 111 | |
Ryan | 8152f9c | 2009-09-01 12:15:29 | [diff] [blame] | 112 | #if Options.options.debug: |
| 113 | # conf.check(lib='profiler', uselib_store='PROFILER') |
Ryan | 7bad9de | 2009-06-16 13:47:57 | [diff] [blame] | 114 | |
Ryan | 8152f9c | 2009-09-01 12:15:29 | [diff] [blame] | 115 | #if Options.options.efence: |
| 116 | # conf.check(lib='efence', libpath=['/usr/lib', '/usr/local/lib'], uselib_store='EFENCE') |
Ryan | a3627c0 | 2009-05-27 14:29:55 | [diff] [blame] | 117 | |
Ryan Dahl | 8b62e86 | 2009-10-10 09:58:36 | [diff] [blame] | 118 | if not conf.check(lib="execinfo", libpath=['/usr/lib', '/usr/local/lib'], uselib_store="EXECINFO"): |
| 119 | if sys.platform.startswith("freebsd"): |
Ryan | 7bad9de | 2009-06-16 13:47:57 | [diff] [blame] | 120 | fatal("Install the libexecinfo port from /usr/ports/devel/libexecinfo.") |
Ryan | a3627c0 | 2009-05-27 14:29:55 | [diff] [blame] | 121 | |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 122 | conf.sub_config('deps/libeio') |
| 123 | conf.sub_config('deps/libev') |
| 124 | |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 125 | conf_subproject(conf, 'deps/udns', './configure') |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 126 | |
Ryan | 452d3f1 | 2009-06-11 11:40:14 | [diff] [blame] | 127 | # Not using TLS yet |
| 128 | # if conf.check_cfg(package='gnutls', args='--cflags --libs', uselib_store="GNUTLS"): |
| 129 | # conf.define("HAVE_GNUTLS", 1) |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 130 | |
| 131 | conf.define("HAVE_CONFIG_H", 1) |
Ryan | c62b124 | 2009-04-22 17:55:08 | [diff] [blame] | 132 | |
Ryan | 1df6d61 | 2009-09-03 13:59:48 | [diff] [blame] | 133 | conf.env.append_value("CCFLAGS", "-DX_STACKSIZE=%d" % (1024*64)) |
Ryan | 427e3f5 | 2009-05-14 11:16:45 | [diff] [blame] | 134 | |
Ryan Dahl | 2b743aa | 2009-10-27 11:05:38 | [diff] [blame^] | 135 | # 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 | |
Ryan | 67af958 | 2009-04-18 13:35:42 | [diff] [blame] | 141 | # Split off debug variant before adding variant specific defines |
Ryan | 7e1350f | 2009-04-16 09:37:44 | [diff] [blame] | 142 | debug_env = conf.env.copy() |
| 143 | conf.set_env_name('debug', debug_env) |
Ryan | 7e1350f | 2009-04-16 09:37:44 | [diff] [blame] | 144 | |
Ryan | 67af958 | 2009-04-18 13:35:42 | [diff] [blame] | 145 | # Configure debug variant |
| 146 | conf.setenv('debug') |
| 147 | debug_env.set_variant('debug') |
Ryan | 8ddf930 | 2009-09-02 18:19:52 | [diff] [blame] | 148 | debug_env.append_value('CCFLAGS', ['-DDEBUG', '-g', '-O0', '-Wall', '-Wextra']) |
| 149 | debug_env.append_value('CXXFLAGS', ['-DDEBUG', '-g', '-O0', '-Wall', '-Wextra']) |
Ryan | 67af958 | 2009-04-18 13:35:42 | [diff] [blame] | 150 | conf.write_config_header("config.h") |
| 151 | |
| 152 | # Configure default variant |
| 153 | conf.setenv('default') |
Ryan | 8ddf930 | 2009-09-02 18:19:52 | [diff] [blame] | 154 | conf.env.append_value('CCFLAGS', ['-DNDEBUG', '-O3']) |
| 155 | conf.env.append_value('CXXFLAGS', ['-DNDEBUG', '-O3']) |
Ryan | 67af958 | 2009-04-18 13:35:42 | [diff] [blame] | 156 | conf.write_config_header("config.h") |
Ryan | 63a9cd3 | 2009-04-15 08:08:28 | [diff] [blame] | 157 | |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 158 | def build_udns(bld): |
| 159 | default_build_dir = bld.srcnode.abspath(bld.env_of_name("default")) |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 160 | |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 161 | 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 Dahl | bf0d278 | 2009-10-03 20:42:03 | [diff] [blame] | 188 | bld.install_files('${PREFIX}/include/node/', 'deps/udns/udns.h') |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 189 | |
Ryan Dahl | 53ebe75 | 2009-10-08 21:20:14 | [diff] [blame] | 190 | def v8_cmd(bld, variant): |
| 191 | scons = join(cwd, 'tools/scons/scons.py') |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 192 | deps_src = join(bld.path.abspath(),"deps") |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 193 | v8dir_src = join(deps_src,"v8") |
Ryan Dahl | 53ebe75 | 2009-10-08 21:20:14 | [diff] [blame] | 194 | |
Ryan Dahl | bc9b343 | 2009-10-02 12:10:40 | [diff] [blame] | 195 | # 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... |
Ryan | 8ddf930 | 2009-09-02 18:19:52 | [diff] [blame] | 199 | |
Ryan Dahl | 7d9d881 | 2009-10-26 21:27:52 | [diff] [blame] | 200 | # XXX Remove this when v8 defaults x86_64 to native builds |
Ryan Dahl | d85724d | 2009-10-08 22:34:39 | [diff] [blame] | 201 | arch = "" |
Ryan Dahl | 7d9d881 | 2009-10-26 21:27:52 | [diff] [blame] | 202 | if bld.env['DEST_CPU'] == 'x86_64': |
Ryan Dahl | d85724d | 2009-10-08 22:34:39 | [diff] [blame] | 203 | arch = "arch=x64" |
| 204 | |
| 205 | if variant == "default": |
| 206 | mode = "release" |
| 207 | else: |
| 208 | mode = "debug" |
Ryan | a4593e3 | 2009-04-23 11:18:38 | [diff] [blame] | 209 | |
Ryan Dahl | 53ebe75 | 2009-10-08 21:20:14 | [diff] [blame] | 210 | 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 | |
| 221 | def build_v8(bld): |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 222 | v8 = bld.new_task_gen( |
Ryan Dahl | 59b7a1b | 2009-10-09 10:49:48 | [diff] [blame] | 223 | source = 'deps/v8/SConstruct ' |
| 224 | + bld.path.ant_glob('v8/include/*') |
| 225 | + bld.path.ant_glob('v8/src/*'), |
Ryan Dahl | 53ebe75 | 2009-10-08 21:20:14 | [diff] [blame] | 226 | target = bld.env["staticlib_PATTERN"] % "v8", |
| 227 | rule = v8_cmd(bld, "default"), |
| 228 | before = "cxx", |
| 229 | install_path = None |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 230 | ) |
Ryan Dahl | 8b62e86 | 2009-10-10 09:58:36 | [diff] [blame] | 231 | v8.uselib = "EXECINFO" |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 232 | bld.env["CPPPATH_V8"] = "deps/v8/include" |
Ryan | a4593e3 | 2009-04-23 11:18:38 | [diff] [blame] | 233 | bld.env_of_name('default')["STATICLIB_V8"] = "v8" |
Ryan | 8ddf930 | 2009-09-02 18:19:52 | [diff] [blame] | 234 | bld.env_of_name('default')["LINKFLAGS_V8"] = ["-pthread"] |
Ryan | a4593e3 | 2009-04-23 11:18:38 | [diff] [blame] | 235 | |
| 236 | ### v8 debug |
Ryan | 29b528c | 2009-04-23 15:29:31 | [diff] [blame] | 237 | if bld.env["USE_DEBUG"]: |
Ryan | 29b528c | 2009-04-23 15:29:31 | [diff] [blame] | 238 | v8_debug = v8.clone("debug") |
Ryan Dahl | 53ebe75 | 2009-10-08 21:20:14 | [diff] [blame] | 239 | v8_debug.rule = v8_cmd(bld, "debug") |
| 240 | v8_debug.target = bld.env["staticlib_PATTERN"] % "v8_g" |
Ryan Dahl | 8b62e86 | 2009-10-10 09:58:36 | [diff] [blame] | 241 | v8_debug.uselib = "EXECINFO" |
Ryan | 29b528c | 2009-04-23 15:29:31 | [diff] [blame] | 242 | bld.env_of_name('debug')["STATICLIB_V8"] = "v8_g" |
Ryan | 8ddf930 | 2009-09-02 18:19:52 | [diff] [blame] | 243 | bld.env_of_name('debug')["LINKFLAGS_V8"] = ["-pthread"] |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 244 | |
Ryan Dahl | 53ebe75 | 2009-10-08 21:20:14 | [diff] [blame] | 245 | bld.install_files('${PREFIX}/include/node/', 'deps/v8/include/*.h') |
Ryan | 2b6d724 | 2009-06-20 13:07:10 | [diff] [blame] | 246 | |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 247 | def build(bld): |
| 248 | bld.add_subdirs('deps/libeio deps/libev') |
| 249 | |
| 250 | build_udns(bld) |
| 251 | build_v8(bld) |
| 252 | |
Ryan | 0fb0af3 | 2009-07-25 15:52:21 | [diff] [blame] | 253 | ### 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 |
Ryan | 29b528c | 2009-04-23 15:29:31 | [diff] [blame] | 261 | if bld.env["USE_DEBUG"]: |
Ryan | 0fb0af3 | 2009-07-25 15:52:21 | [diff] [blame] | 262 | evcom.clone("debug") |
Ryan Dahl | bf0d278 | 2009-10-03 20:42:03 | [diff] [blame] | 263 | bld.install_files('${PREFIX}/include/node/', 'deps/evcom/evcom.h') |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 264 | |
Ryan | 5a071ad | 2009-05-03 12:09:16 | [diff] [blame] | 265 | ### 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 |
Ryan | 29b528c | 2009-04-23 15:29:31 | [diff] [blame] | 272 | if bld.env["USE_DEBUG"]: |
Ryan | 5a071ad | 2009-05-03 12:09:16 | [diff] [blame] | 273 | http_parser.clone("debug") |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 274 | |
Ryan | 17c6a67 | 2009-08-24 18:25:24 | [diff] [blame] | 275 | ### 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 | |
Ryan | 63a9cd3 | 2009-04-15 08:08:28 | [diff] [blame] | 285 | ### 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( |
Ryan | 2ecd7ff | 2009-06-25 17:13:20 | [diff] [blame] | 293 | source = """ |
Ryan | eb10553 | 2009-07-16 15:19:02 | [diff] [blame] | 294 | src/util.js |
Ryan | 2ecd7ff | 2009-06-25 17:13:20 | [diff] [blame] | 295 | src/events.js |
Ryan | 2ecd7ff | 2009-06-25 17:13:20 | [diff] [blame] | 296 | src/file.js |
| 297 | src/node.js |
| 298 | """, |
Ryan Dahl | 53ebe75 | 2009-10-08 21:20:14 | [diff] [blame] | 299 | target="src/node_natives.h", |
Ryan | 63a9cd3 | 2009-04-15 08:08:28 | [diff] [blame] | 300 | before="cxx" |
| 301 | ) |
Ryan | 8e7bbf2 | 2009-04-23 17:26:56 | [diff] [blame] | 302 | native_cc.install_path = None |
Ryan Dahl | 4bcb01c | 2009-10-16 20:53:44 | [diff] [blame] | 303 | |
| 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.) |
Ryan | 29b528c | 2009-04-23 15:29:31 | [diff] [blame] | 308 | if bld.env["USE_DEBUG"]: |
Ryan Dahl | 4bcb01c | 2009-10-16 20:53:44 | [diff] [blame] | 309 | native_cc_debug = native_cc.clone("debug") |
| 310 | native_cc_debug.rule = javascript_in_c |
| 311 | native_cc.rule = javascript_in_c |
Ryan | 63a9cd3 | 2009-04-15 08:08:28 | [diff] [blame] | 312 | |
Ryan | 2b6d724 | 2009-06-20 13:07:10 | [diff] [blame] | 313 | ### node lib |
Ryan | 8152f9c | 2009-09-01 12:15:29 | [diff] [blame] | 314 | node = bld.new_task_gen("cxx", "program") |
| 315 | node.name = "node" |
| 316 | node.target = "node" |
| 317 | node.source = """ |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 318 | src/node.cc |
Ryan Dahl | a5df0f6 | 2009-10-27 10:46:58 | [diff] [blame] | 319 | 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 |
Ryan | 17c6a67 | 2009-08-24 18:25:24 | [diff] [blame] | 327 | src/node_stdio.cc |
Ryan Dahl | a5df0f6 | 2009-10-27 10:46:58 | [diff] [blame] | 328 | src/node_timer.cc |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 329 | """ |
Ryan | 8152f9c | 2009-09-01 12:15:29 | [diff] [blame] | 330 | node.includes = """ |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 331 | src/ |
| 332 | deps/v8/include |
| 333 | deps/libev |
Ryan | 41d89f6 | 2009-07-28 10:29:18 | [diff] [blame] | 334 | deps/udns |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 335 | deps/libeio |
Ryan | 0fb0af3 | 2009-07-25 15:52:21 | [diff] [blame] | 336 | deps/evcom |
Ryan | 5a071ad | 2009-05-03 12:09:16 | [diff] [blame] | 337 | deps/http_parser |
Ryan | 17c6a67 | 2009-08-24 18:25:24 | [diff] [blame] | 338 | deps/coupling |
Ryan | 1a126ed | 2009-04-04 12:50:15 | [diff] [blame] | 339 | """ |
Ryan | 8152f9c | 2009-09-01 12:15:29 | [diff] [blame] | 340 | node.uselib_local = "evcom ev eio http_parser coupling" |
| 341 | node.uselib = "UDNS V8 EXECINFO DL" |
| 342 | node.install_path = '${PREFIX}/lib' |
Ryan | 8e7bbf2 | 2009-04-23 17:26:56 | [diff] [blame] | 343 | node.install_path = '${PREFIX}/bin' |
| 344 | node.chmod = 0755 |
| 345 | |
Ryan | 4d92199 | 2009-08-26 23:11:16 | [diff] [blame] | 346 | def subflags(program): |
Ryan Dahl | d979ac9 | 2009-10-09 13:00:12 | [diff] [blame] | 347 | if os.path.exists(join(cwd, ".git")): |
Ryan Dahl | 962e929 | 2009-10-09 14:16:27 | [diff] [blame] | 348 | actual_version=cmd_output("git describe").strip() |
Ryan Dahl | d979ac9 | 2009-10-09 13:00:12 | [diff] [blame] | 349 | else: |
| 350 | actual_version=VERSION |
| 351 | |
Ryan | b73264d | 2009-08-27 00:15:11 | [diff] [blame] | 352 | x = { 'CCFLAGS' : " ".join(program.env["CCFLAGS"]) |
| 353 | , 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]) |
| 354 | , 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]) |
Ryan Dahl | d979ac9 | 2009-10-09 13:00:12 | [diff] [blame] | 355 | , 'VERSION' : actual_version |
Ryan | b73264d | 2009-08-27 00:15:11 | [diff] [blame] | 356 | , 'PREFIX' : program.env["PREFIX"] |
Ryan | 4d92199 | 2009-08-26 23:11:16 | [diff] [blame] | 357 | } |
Ryan Dahl | bf0d278 | 2009-10-03 20:42:03 | [diff] [blame] | 358 | return x |
Ryan | 4d92199 | 2009-08-26 23:11:16 | [diff] [blame] | 359 | |
Ryan | 4d92199 | 2009-08-26 23:11:16 | [diff] [blame] | 360 | # process file.pc.in -> file.pc |
Ryan Dahl | d979ac9 | 2009-10-09 13:00:12 | [diff] [blame] | 361 | |
Ryan | b73264d | 2009-08-27 00:15:11 | [diff] [blame] | 362 | 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) |
Ryan | a97dce7 | 2009-08-31 09:14:34 | [diff] [blame] | 366 | node_version.install_path = '${PREFIX}/include/node' |
Ryan | 4d92199 | 2009-08-26 23:11:16 | [diff] [blame] | 367 | |
Ryan | 29b528c | 2009-04-23 15:29:31 | [diff] [blame] | 368 | if bld.env["USE_DEBUG"]: |
Ryan | 2b6d724 | 2009-06-20 13:07:10 | [diff] [blame] | 369 | node_g = node.clone("debug") |
| 370 | node_g.target = "node_g" |
Ryan | 4d92199 | 2009-08-26 23:11:16 | [diff] [blame] | 371 | |
Ryan | b73264d | 2009-08-27 00:15:11 | [diff] [blame] | 372 | node_version_g = node_version.clone("debug") |
| 373 | node_version_g.dict = subflags(node_g) |
Ryan | a97dce7 | 2009-08-31 09:14:34 | [diff] [blame] | 374 | node_version_g.install_path = None |
Ryan | 4d92199 | 2009-08-26 23:11:16 | [diff] [blame] | 375 | |
Ryan | a97dce7 | 2009-08-31 09:14:34 | [diff] [blame] | 376 | |
| 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 Dahl | bf0d278 | 2009-10-03 20:42:03 | [diff] [blame] | 383 | """) |
| 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 Dahl | 6f17ca5 | 2009-10-03 17:08:05 | [diff] [blame] | 391 | |
| 392 | # Why am I using two lines? Because WAF SUCKS. |
Ryan Dahl | bf0d278 | 2009-10-03 20:42:03 | [diff] [blame] | 393 | bld.install_files('${PREFIX}/lib/node/wafadmin', 'tools/wafadmin/*.py') |
| 394 | bld.install_files('${PREFIX}/lib/node/wafadmin/Tools', 'tools/wafadmin/Tools/*.py') |
Ryan Dahl | 6f17ca5 | 2009-10-03 17:08:05 | [diff] [blame] | 395 | |
Ryan Dahl | bf0d278 | 2009-10-03 20:42:03 | [diff] [blame] | 396 | bld.install_files('${PREFIX}/lib/node/libraries/', 'lib/*.js') |