Browse Source

More dynmaic linking options

This adds the following options to the `configure` program

  --shared-v8           Link to a shared V8 DLL instead of static linking
  --shared-v8-includes=SHARED_V8_INCLUDES
                        Directory containing V8 header files
  --shared-v8-libpath=SHARED_V8_LIBPATH
                        A directory to search for the shared V8 DLL
  --shared-cares        Link to a shared C-Ares DLL instead of static linking
  --shared-cares-includes=SHARED_CARES_INCLUDES
                        Directory containing C-Ares header files
  --shared-cares-libpath=SHARED_CARES_LIBPATH
                        A directory to search for the shared C-Ares DLL
  --shared-libev        Link to a shared libev DLL instead of static linking
  --shared-libev-includes=SHARED_LIBEV_INCLUDES
                        Directory containing libev header files
  --shared-libev-libpath=SHARED_LIBEV_LIBPATH
                        A directory to search for the shared libev DLL

and removes --system.
v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
75f0cf471a
  1. 1
      Makefile
  2. 2
      src/node.cc
  3. 214
      wscript

1
Makefile

@ -1,7 +1,6 @@
WAF=python tools/waf-light WAF=python tools/waf-light
all: all:
echo $(WAF)
@$(WAF) build @$(WAF) build
all-debug: all-debug:

2
src/node.cc

@ -1428,7 +1428,7 @@ error:
static void CheckStatus(EV_P_ ev_timer *watcher, int revents) { static void CheckStatus(EV_P_ ev_timer *watcher, int revents) {
assert(watcher == &gc_timer); assert(watcher == &gc_timer);
assert(revents == EV_TIMER); assert(revents == EV_TIMEOUT);
#if HAVE_GETMEM #if HAVE_GETMEM
// check memory // check memory

214
wscript

@ -37,12 +37,7 @@ def set_options(opt):
, help='Build with -lefence for debugging [Default: False]' , help='Build with -lefence for debugging [Default: False]'
, dest='efence' , dest='efence'
) )
opt.add_option( '--system'
, action='store_true'
, default=False
, help='Build using system libraries and headers (like a debian build) [Default: False]'
, dest='system'
)
opt.add_option( '--without-ssl' opt.add_option( '--without-ssl'
, action='store_true' , action='store_true'
, default=False , default=False
@ -50,14 +45,88 @@ def set_options(opt):
, dest='without_ssl' , dest='without_ssl'
) )
opt.add_option('--shared-v8'
, action='store_true'
, default=False
, help='Link to a shared V8 DLL instead of static linking'
, dest='shared_v8'
)
opt.add_option( '--shared-v8-includes'
, action='store'
, default=False
, help='Directory containing V8 header files'
, dest='shared_v8_includes'
)
opt.add_option( '--shared-v8-libpath'
, action='store'
, default=False
, help='A directory to search for the shared V8 DLL'
, dest='shared_v8_libpath'
)
opt.add_option('--shared-cares'
, action='store_true'
, default=False
, help='Link to a shared C-Ares DLL instead of static linking'
, dest='shared_cares'
)
opt.add_option( '--shared-cares-includes'
, action='store'
, default=False
, help='Directory containing C-Ares header files'
, dest='shared_cares_includes'
)
opt.add_option( '--shared-cares-libpath'
, action='store'
, default=False
, help='A directory to search for the shared C-Ares DLL'
, dest='shared_cares_libpath'
)
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'
)
def configure(conf): def configure(conf):
conf.check_tool('compiler_cxx') conf.check_tool('compiler_cxx')
if not conf.env.CXX: conf.fatal('c++ compiler not found') if not conf.env.CXX: conf.fatal('c++ compiler not found')
conf.check_tool('compiler_cc') conf.check_tool('compiler_cc')
if not conf.env.CC: conf.fatal('c compiler not found') if not conf.env.CC: conf.fatal('c compiler not found')
conf.env["USE_DEBUG"] = Options.options.debug o = Options.options
conf.env["USE_SYSTEM"] = Options.options.system
conf.env["USE_DEBUG"] = o.debug
conf.env["USE_SHARED_V8"] = o.shared_v8 or o.shared_v8_includes or o.shared_v8_libpath
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.check(lib='dl', uselib_store='DL') conf.check(lib='dl', uselib_store='DL')
if not sys.platform.startswith("sunos"): if not sys.platform.startswith("sunos"):
@ -106,17 +175,61 @@ def configure(conf):
if not conf.check(lib='nsl', uselib_store="NSL"): if not conf.check(lib='nsl', uselib_store="NSL"):
conf.fatal("Cannot find nsl library") conf.fatal("Cannot find nsl library")
conf.sub_config('deps/libeio') conf.sub_config('deps/libeio')
if not Options.options.system:
conf.sub_config('deps/libev')
conf.sub_config('deps/c-ares')
if conf.env['USE_SHARED_V8']:
v8_includes = [];
if o.shared_v8_includes: v8_includes.append(o.shared_v8_includes);
v8_libpath = [];
if o.shared_v8_libpath: v8_libpath.append(o.shared_v8_libpath);
if not conf.check_cxx(lib='v8', header_name='v8.h',
uselib_store='V8',
includes=v8_includes,
libpath=v8_libpath):
conf.fatal("Cannot find v8")
if o.debug:
if not conf.check_cxx(lib='v8_g', header_name='v8.h',
uselib_store='V8_G',
includes=v8_includes,
libpath=v8_libpath):
conf.fatal("Cannot find v8_g")
if conf.env['USE_SHARED_CARES']:
cares_includes = [];
if o.shared_cares_includes: cares_includes.append(o.shared_cares_includes);
cares_libpath = [];
if o.shared_cares_libpath: cares_libpath.append(o.shared_cares_libpath);
if not conf.check_cxx(lib='cares',
header_name='ares.h',
uselib_store='CARES',
includes=cares_includes,
libpath=cares_libpath):
conf.fatal("Cannot find c-ares")
else: else:
if not conf.check(lib='v8', uselib_store='V8'): conf.sub_config('deps/c-ares')
conf.fatal("Cannot find V8")
if not conf.check(lib='ev', uselib_store='EV'):
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") conf.fatal("Cannot find libev")
if not conf.check(lib='cares', uselib_store='CARES'): else:
conf.fatal("Cannot find c-ares") conf.sub_config('deps/libev')
conf.define("HAVE_CONFIG_H", 1) conf.define("HAVE_CONFIG_H", 1)
@ -211,8 +324,8 @@ def v8_cmd(bld, variant):
def build_v8(bld): def build_v8(bld):
v8 = bld.new_task_gen( v8 = bld.new_task_gen(
source = 'deps/v8/SConstruct ' source = 'deps/v8/SConstruct '
+ bld.path.ant_glob('v8/include/*') + bld.path.ant_glob('v8/include/*')
+ bld.path.ant_glob('v8/src/*'), + bld.path.ant_glob('v8/src/*'),
target = bld.env["staticlib_PATTERN"] % "v8", target = bld.env["staticlib_PATTERN"] % "v8",
rule = v8_cmd(bld, "default"), rule = v8_cmd(bld, "default"),
@ -237,16 +350,15 @@ def build_v8(bld):
bld.install_files('${PREFIX}/include/node/', 'deps/v8/include/*.h') bld.install_files('${PREFIX}/include/node/', 'deps/v8/include/*.h')
def build(bld): def build(bld):
Options.options.jobs=jobs
print "DEST_OS: " + bld.env['DEST_OS'] print "DEST_OS: " + bld.env['DEST_OS']
print "DEST_CPU: " + bld.env['DEST_CPU'] print "DEST_CPU: " + bld.env['DEST_CPU']
print "Parallel Jobs: " + str(Options.options.jobs) print "Parallel Jobs: " + str(Options.options.jobs)
if not bld.env["USE_SYSTEM"]: bld.add_subdirs('deps/libeio')
bld.add_subdirs('deps/libeio deps/libev deps/c-ares')
build_v8(bld) if not bld.env['USE_SHARED_V8']: build_v8(bld)
else: if not bld.env['USE_SHARED_LIBEV']: bld.add_subdirs('deps/libev')
bld.add_subdirs('deps/libeio') if not bld.env['USE_SHARED_CARES']: bld.add_subdirs('deps/c-ares')
### http_parser ### http_parser
@ -314,6 +426,11 @@ def build(bld):
node = bld.new_task_gen("cxx", "program") node = bld.new_task_gen("cxx", "program")
node.name = "node" node.name = "node"
node.target = "node" node.target = "node"
node.uselib = 'RT EV OPENSSL CARES EXECINFO DL KVM SOCKET NSL'
node.add_objects = 'eio http_parser'
node.install_path = '${PREFIX}/lib'
node.install_path = '${PREFIX}/bin'
node.chmod = 0755
node.source = """ node.source = """
src/node.cc src/node.cc
src/node_buffer.cc src/node_buffer.cc
@ -331,38 +448,23 @@ def build(bld):
src/node_timer.cc src/node_timer.cc
src/node_script.cc src/node_script.cc
""" """
if bld.env["USE_OPENSSL"]: if bld.env["USE_OPENSSL"]: node.source += "src/node_crypto.cc"
node.source += "src/node_crypto.cc"
if not bld.env["USE_SYSTEM"]: node.includes = """
node.includes = """ src/
src/ deps/libeio
deps/v8/include deps/http_parser
deps/libev """
deps/c-ares
deps/libeio
deps/http_parser
"""
node.includes += ' deps/c-ares/' + bld.env['DEST_OS'] + '-' + bld.env['DEST_CPU']
if not bld.env["USE_SHARED_V8"]: node.includes += ' deps/v8/include '
node.add_objects = 'cares ev eio http_parser' if not bld.env["USE_SHARED_LIBEV"]:
node.uselib_local = '' node.add_objects += ' ev '
node.uselib = 'RT OPENSSL V8 EXECINFO DL KVM SOCKET NSL' node.includes += ' deps/libev '
else:
node.includes = """
src/
deps/libeio
deps/http_parser
"""
node.add_objects = 'eio http_parser'
node.uselib_local = 'eio'
node.uselib = 'RT EV OPENSSL CARES V8 EXECINFO DL KVM SOCKET NSL'
node.install_path = '${PREFIX}/lib' if not bld.env["USE_SHARED_CARES"]:
node.install_path = '${PREFIX}/bin' node.add_objects += ' cares '
node.chmod = 0755 node.includes += ' deps/c-ares deps/c-ares/' + bld.env['DEST_OS'] + '-' + bld.env['DEST_CPU']
def subflags(program): def subflags(program):
if os.path.exists(join(cwd, ".git")): if os.path.exists(join(cwd, ".git")):
@ -388,8 +490,10 @@ def build(bld):
if bld.env["USE_DEBUG"]: if bld.env["USE_DEBUG"]:
node_g = node.clone("debug") node_g = node.clone("debug")
node.uselib += ' V8'
node_g.target = "node_g" node_g.target = "node_g"
node_g.uselib += ' V8_G'
node_version_g = node_version.clone("debug") node_version_g = node_version.clone("debug")
node_version_g.dict = subflags(node_g) node_version_g.dict = subflags(node_g)
node_version_g.install_path = None node_version_g.install_path = None
@ -403,14 +507,12 @@ def build(bld):
src/node_events.h src/node_events.h
""") """)
# Only install the man page if it exists. # Only install the man page if it exists.
# Do 'make doc install' to build and install it. # Do 'make doc install' to build and install it.
if os.path.exists('doc/node.1'): if os.path.exists('doc/node.1'):
bld.install_files('${PREFIX}/share/man/man1/', 'doc/node.1') bld.install_files('${PREFIX}/share/man/man1/', 'doc/node.1')
bld.install_files('${PREFIX}/bin/', 'bin/*', chmod=0755) bld.install_files('${PREFIX}/bin/', 'bin/*', chmod=0755)
# Why am I using two lines? Because WAF SUCKS.
bld.install_files('${PREFIX}/lib/node/wafadmin', 'tools/wafadmin/*.py') bld.install_files('${PREFIX}/lib/node/wafadmin', 'tools/wafadmin/*.py')
bld.install_files('${PREFIX}/lib/node/wafadmin/Tools', 'tools/wafadmin/Tools/*.py') bld.install_files('${PREFIX}/lib/node/wafadmin/Tools', 'tools/wafadmin/Tools/*.py')

Loading…
Cancel
Save