summaryrefslogtreecommitdiff
path: root/tools/install.py
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2022-07-17 18:33:52 +0200
committerGitHub <noreply@github.com>2022-07-17 17:33:52 +0100
commitaa3a572e6bee116cde69508dc29478b40f40551a (patch)
tree8ba8f2359f27dc38644ae1065067d85d9b96a7ea /tools/install.py
parent8baf372313a435722783e248ec7a02f02de3f332 (diff)
downloadnode-new-aa3a572e6bee116cde69508dc29478b40f40551a.tar.gz
build: remove dtrace & etw support
There are no clear indicators anyone is using the dtrace USDT probes. ETW support is very intertwined with the dtrace infrastructure. It's not clear if anyone uses ETW so to keep things simple it too is removed. Fixes: https://github.com/nodejs/node/issues/43649 PR-URL: https://github.com/nodejs/node/pull/43652 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Diffstat (limited to 'tools/install.py')
-rwxr-xr-xtools/install.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/install.py b/tools/install.py
index 2a41a286f4..bf8f5673fa 100755
--- a/tools/install.py
+++ b/tools/install.py
@@ -144,8 +144,6 @@ def files(action):
else:
output_lib = 'libnode.' + variables.get('shlib_suffix')
action([output_prefix + output_lib], 'lib/' + output_lib)
- if 'true' == variables.get('node_use_dtrace'):
- action(['out/Release/node.d'], 'lib/dtrace/node.d')
action(['deps/v8/tools/gdbinit'], 'share/doc/node/')
action(['deps/v8/tools/lldb_commands.py'], 'share/doc/node/')