summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-05-12 19:16:40 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-05-13 00:54:00 -0700
commitefca334be2b999b2112eb963c3ece7517c06713f (patch)
treeb73b2ccdf557ada21e8ef9dfefd653c2e3c84c29 /wscript
parent337c48db5fe06ddaf626b03b7db6c6f48c5d3b62 (diff)
downloadandroid-node-v8-efca334be2b999b2112eb963c3ece7517c06713f.tar.gz
android-node-v8-efca334be2b999b2112eb963c3ece7517c06713f.tar.bz2
android-node-v8-efca334be2b999b2112eb963c3ece7517c06713f.zip
Integrate libuv into build system
Diffstat (limited to 'wscript')
-rw-r--r--wscript95
1 files changed, 48 insertions, 47 deletions
diff --git a/wscript b/wscript
index b1a6f7c3a6..43e447a950 100644
--- a/wscript
+++ b/wscript
@@ -173,27 +173,6 @@ def set_options(opt):
)
- opt.add_option('--shared-libev'
- , action='store_true'
- , default=False
- , help='Link to a shared libev DLL instead of static linking'
- , dest='shared_libev'
- )
-
- opt.add_option( '--shared-libev-includes'
- , action='store'
- , default=False
- , help='Directory containing libev header files'
- , dest='shared_libev_includes'
- )
-
- opt.add_option( '--shared-libev-libpath'
- , action='store'
- , default=False
- , help='A directory to search for the shared libev DLL'
- , dest='shared_libev_libpath'
- )
-
opt.add_option( '--with-dtrace'
, action='store_true'
, default=False
@@ -243,7 +222,6 @@ def configure(conf):
conf.env["USE_SHARED_V8"] = o.shared_v8 or o.shared_v8_includes or o.shared_v8_libpath or o.shared_v8_libname
conf.env["USE_SHARED_CARES"] = o.shared_cares or o.shared_cares_includes or o.shared_cares_libpath
- conf.env["USE_SHARED_LIBEV"] = o.shared_libev or o.shared_libev_includes or o.shared_libev_libpath
conf.env["USE_GDBJIT"] = o.use_gdbjit
@@ -411,22 +389,6 @@ def configure(conf):
else:
conf.sub_config('deps/c-ares')
-
- if conf.env['USE_SHARED_LIBEV']:
- libev_includes = [];
- if o.shared_libev_includes: libev_includes.append(o.shared_libev_includes);
- libev_libpath = [];
- if o.shared_libev_libpath: libev_libpath.append(o.shared_libev_libpath);
- if not conf.check_cxx(lib='ev', header_name='ev.h',
- uselib_store='EV',
- includes=libev_includes,
- libpath=libev_libpath):
- conf.fatal("Cannot find libev")
- else:
- conf.sub_config('deps/libev')
-
-
-
conf.define("HAVE_CONFIG_H", 1)
if sys.platform.startswith("sunos"):
@@ -612,7 +574,6 @@ def build_v8(bld):
t = join(bld.srcnode.abspath(bld.env_of_name("default")), v8.target)
bld.env_of_name('default').append_value("LINKFLAGS_V8", t)
-
### v8 debug
if bld.env["USE_DEBUG"]:
v8_debug = v8.clone("debug")
@@ -625,6 +586,47 @@ def build_v8(bld):
bld.install_files('${PREFIX}/include/node/', 'deps/v8/include/*.h')
+def sh_escape(s):
+ return s.replace("(","\\(").replace(")","\\)").replace(" ","\\ ")
+
+def uv_cmd(bld, variant):
+ srcdeps = join(bld.path.abspath(), "deps")
+ srcdir = join(srcdeps, "uv")
+ blddir = bld.srcnode.abspath(bld.env_of_name(variant)) + '/deps/uv'
+ #
+ # FIXME This is awful! We're copying the entire source directory into the
+ # build directory before each compile. This could be much improved by
+ # modifying libuv's build to send object files to a separate directory.
+ #
+ cmd = 'cp -r ' + sh_escape(srcdir) + '/* ' + sh_escape(blddir) + \
+ ' && make -C ' + sh_escape(blddir)
+ return cmd
+
+
+def build_uv(bld):
+ uv = bld.new_task_gen(
+ name = 'uv',
+ source = 'deps/uv/uv.h',
+ target = 'deps/uv/uv.a',
+ before = "cxx",
+ rule = uv_cmd(bld, 'default')
+ )
+
+ #bld.env["CPPPATH_UV"] = 'deps/uv/'
+
+ t = join(bld.srcnode.abspath(bld.env_of_name("default")), uv.target)
+ bld.env_of_name('default').append_value("LINKFLAGS_UV", t)
+
+ if bld.env["USE_DEBUG"]:
+ uv_debug = uv.clone("debug")
+ uv_debug.rule = uv_cmd(bld, 'debug')
+
+ t = join(bld.srcnode.abspath(bld.env_of_name("debug")), uv_debug.target)
+ bld.env_of_name('debug').append_value("LINKFLAGS_UV", t)
+
+ bld.install_files('${PREFIX}/include/node/', 'deps/uv/*.h')
+ bld.install_files('${PREFIX}/include/node/', 'deps/uv/ev/*.h')
+
def build(bld):
## This snippet is to show full commands as WAF executes
@@ -646,8 +648,9 @@ def build(bld):
bld.add_subdirs('deps/libeio')
+ build_uv(bld)
+
if not bld.env['USE_SHARED_V8']: build_v8(bld)
- if not bld.env['USE_SHARED_LIBEV']: bld.add_subdirs('deps/libev')
if not bld.env['USE_SHARED_CARES']: bld.add_subdirs('deps/c-ares')
@@ -806,7 +809,7 @@ def build(bld):
node = bld.new_task_gen("cxx", product_type)
node.name = "node"
node.target = "node"
- node.uselib = 'RT EV OPENSSL CARES EXECINFO DL KVM SOCKET NSL KSTAT UTIL OPROFILE'
+ node.uselib = 'RT OPENSSL CARES EXECINFO DL KVM SOCKET NSL KSTAT UTIL OPROFILE'
node.add_objects = 'eio http_parser'
if product_type_is_lib:
node.install_path = '${LIBDIR}'
@@ -851,14 +854,12 @@ def build(bld):
src/
deps/libeio
deps/http_parser
+ deps/uv
+ deps/uv/ev
"""
if not bld.env["USE_SHARED_V8"]: node.includes += ' deps/v8/include '
- if not bld.env["USE_SHARED_LIBEV"]:
- node.add_objects += ' ev '
- node.includes += ' deps/libev '
-
if not bld.env["USE_SHARED_CARES"]:
node.add_objects += ' cares '
node.includes += ' deps/c-ares deps/c-ares/' + bld.env['DEST_OS'] + '-' + bld.env['DEST_CPU']
@@ -889,14 +890,14 @@ def build(bld):
if bld.env["USE_DEBUG"]:
node_g = node.clone("debug")
node_g.target = "node_g"
- node_g.uselib += ' V8_G'
+ node_g.uselib += ' V8_G UV '
node_conf_g = node_conf.clone("debug")
node_conf_g.dict = subflags(node_g)
node_conf_g.install_path = None
# After creating the debug clone, append the V8 dep
- node.uselib += ' V8'
+ node.uselib += ' V8 UV '
bld.install_files('${PREFIX}/include/node/', """
config.h