~ubuntu-branches/ubuntu/natty/nodejs/natty

« back to all changes in this revision

Viewing changes to benchmark/function_call/wscript

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard, Jérémy Lal, Jonas Smedegaard
  • Date: 2011-02-07 23:39:40 UTC
  • mfrom: (7.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110207233940-ctxh80ux4u7xfybh
Tags: 0.2.6-4
[ Jérémy Lal ]
* Disable simple/test-buffer Buffer.unpack test that fails on ARM.
  The pack/unpack functions are deprecated, and not documented.

[ Jonas Smedegaard ]
* Drop done items from TODO.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
srcdir = '.'
 
2
blddir = 'build'
 
3
VERSION = '0.0.1'
 
4
 
 
5
def set_options(opt):
 
6
  opt.tool_options('compiler_cxx')
 
7
 
 
8
def configure(conf):
 
9
  conf.check_tool('compiler_cxx')
 
10
  conf.check_tool('node_addon')
 
11
 
 
12
def build(bld):
 
13
  obj = bld.new_task_gen('cxx', 'shlib', 'node_addon')
 
14
  obj.target = 'binding'
 
15
  obj.source = 'binding.cc'