Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,11 +429,6 @@

parser.add_argument_group(static_optgroup)

parser.add_argument('--systemtap-includes',
action='store',
dest='systemtap_includes',
help='directory containing systemtap header files')

parser.add_argument('--tag',
action='store',
dest='tag',
Expand Down Expand Up @@ -1316,10 +1311,6 @@ def configure_node(o):
# Don't enable by default on linux and freebsd
if flavor in ('linux', 'freebsd'):
use_dtrace = options.with_dtrace

if flavor == 'linux':
if options.systemtap_includes:
o['include_dirs'] += [options.systemtap_includes]
o['variables']['node_use_dtrace'] = b(use_dtrace)
elif options.with_dtrace:
raise Exception(
Expand Down
146 changes: 0 additions & 146 deletions src/node.stp

This file was deleted.

3 changes: 0 additions & 3 deletions tools/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,6 @@ def files(action):
if 'true' == variables.get('node_use_dtrace'):
action(['out/Release/node.d'], 'lib/dtrace/node.d')

# behave similarly for systemtap
action(['src/node.stp'], 'share/systemtap/tapset/')

action(['deps/v8/tools/gdbinit'], 'share/doc/node/')
action(['deps/v8/tools/lldb_commands.py'], 'share/doc/node/')

Expand Down